function switchDisplay(id){
doc=document.getElementById(id);
 if(doc.style.display == 'none')
  doc.style.display = 'block';
 else
  doc.style.display = 'none';
}

function setDimensionsStart(){
    h = document.body.scrollHeight;
    parent.document.getElementById("job_iframe").style.height = h;
}





