// Dynamic Iframe loader
function loadIframe(theURL) {
	document.getElementById("gallery").src=theURL;
}

// resizes Iframe according to content
function resizeMe(obj){ 
	    docHeight = mainContent.document.height || mainContent.document.body.scrollHeight  
		obj.style.height = docHeight + 'px'
} 
