     function autofitIframe(id) 
     { 
		if(window == window.top)
		 {
			 window.document.location.href = "/index.html?page=" + window.document.URL;
			//alert(window.document.URL);
		 }
		 else
		 {
          if (!window.opera && !document.mimeType && document.all && document.getElementById) 
          {         window.parent.document.getElementById(id).style.height=document.getElementById("contentContainer").offsetHeight+"px"; 
          } 
          else if(document.getElementById) 
          { 
window.parent.document.getElementById(id).style.height=document.getElementById("contentContainer").scrollHeight+"px" 
          }
		 }
     } 

     function jumpToFrame() 
     { 
		if(window == window.top)
		 {
			 window.document.location.href = "/index.html?page=" + window.document.URL;
		 }
		 else
		 {
			window.top.goTop();
		}
     } 