	// #############################################################################
	// Funzioni utilizzate per modificare l'altezza dell'IFRAME 
	// associato alle Job Opportunities
	//##############################################################

	function getDocHeight(doc) {
	  var docHt = 0, sh, oh;
	  if (doc.height) docHt = doc.height;
	  else if (doc.body) {
	    if (doc.body.scrollHeight) docHt = sh = doc.body.scrollHeight;
	    if (doc.body.offsetHeight) docHt = oh = doc.body.offsetHeight;
	    if (sh && oh) docHt = Math.max(sh, oh);
	  }

	  return docHt;

	}

	function setIframeHeight(IframeID) {
		if (top.document.getElementById(IframeID)) {	
			var iframeName = top.document.getElementById(IframeID).name;
			var iframeWin = top.frames[iframeName];	
			var docHt = getDocHeight(iframeWin.document); //altezza pagina in curriculum
			if (docHt) top.document.getElementById(IframeID).style.height = docHt + 30 + "px";
		} else {
			//mi trovo nella directory CURRICULUM senza essere richiamato tramite IFRAME
		}
		
		
	}

