// Dynamic Iframe loader
	function loadIframe(theURL) {
		document.getElementById("frame").src=theURL;
	}
	
	// resizes Iframe according to content
	function resizeMe(obj){ 
		docHeight = frame.document.height || frame.document.body.scrollHeight 
		obj.style.height = docHeight + 'px'
	} 
