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