// JavaScript Document
function autofitIframe(id){
	if (!window.opera && !document.mimeType && document.all && document.getElementById){
 		parent.document.getElementById(id).style.height=this.document.body.offsetHeight+"px";
 	}
 	else if(document.getElementById) {
 		parent.document.getElementById(id).style.height=this.document.body.scrollHeight+"px"
 	}
}

function customIframe(id,h){
	if (!window.opera && !document.mimeType && document.all && document.getElementById){
 		parent.document.getElementById(id).style.height=(this.document.body.offsetHeight - h )+ "px";alert(parent.document.getElementById(id).style.height);
 	}
 	else if(document.getElementById) {
 		parent.document.getElementById(id).style.height=(this.document.body.scrollHeight- h )+ "px"
 	}
}