var just_once = 0;
document.write("<iframe id='upgrade_up' name='upgrade_up' src='http://www.upgradeup.com/upgrade_up.php' style='border: 0px; width: 960px; height: 100%;' onload='resizeIframe()' width='960' frameborder='0'></iframe>");
function resizeIframe() {
	iframe_element = document.getElementById('upgrade_up');
//	iframe_element.style.height = iframe_element.contentWindow.document.body.scrollHeight + "px";
//
	if (document.documentElement && document.documentElement.clientHeight)  
		height = document.documentElement.clientHeight;  
	else if (document.body)  
        	height = document.body.clientHeight; 
	height += iframe_element.offsetTop;
	if (just_once == 0) {
		height += 200;
		just_once = 1;
		iframe_element.style.height = height +"px";
	}
};
window.onresize = resizeIframe;
