
// Dynamic Iframe loader
function loadIframe(theURL,obj) {
	document.getElementById("mainContent").src=theURL;
	resizeMe();

}

// resizes Iframe according to content
function resizeMe(){
docHeight = document.getElementById("mainContent").contentWindow.document.body.scrollHeight;
document.getElementById("mainContent").height = docHeight ;

 } 