
function load_pop()
{
	// window.document.body.scroll='no';

	document.getElementById('body_id').style.overflow='hidden';
	document.getElementById('ordpanel').innerHTML='<div style="width:544px; height:427px; background:url(images/order_temporary.png); overflow:hidden;"><div style="margin-top:15px; margin-left:436px;"><a href="#" onclick="closePop();"><img src="images/order_close.jpg" border="0"/></a></div></div>';
}

	function resizeBox()
	{
		var panel = document.getElementById('ordpanel');
		var width = getWindowWidth()/2 - 272;
		var height = getWindowHeight()/2 - 213;
		panel.style.left = width.toString()+'px';
		panel.style.top = height.toString()+'px';		
	}	
	
	function dimPop()
	{
		var winHeight = getWindowHeight();
		var winWidth = getWindowWidth();
		
		var dimmer = document.getElementById('orddimmer');
		var panel = document.getElementById('ordpanel');

		dimmer.style.width = winWidth + "px";
		dimmer.style.height = winHeight + "px";
		
		resizeBox();
		
		dimmer.style.display = "block";
		panel.style.display = "block";
		
	}
	
	function closePop()
	{
		document.getElementById('body_id').style.overflow='auto';
		var dimmer = document.getElementById('orddimmer');
		var panel = document.getElementById('ordpanel');

		dimmer.style.display = "none";
		panel.style.display = "none";
	}
	
	function getWindowHeight()
	{
			var windowHeight = 0;
			if (typeof(window.innerHeight) == 'number') {
					windowHeight = window.innerHeight;
			} else {
					if (document.documentElement && document.documentElement.clientHeight) {
							windowHeight = document.documentElement.clientHeight;
					} else {
							if (document.body && document.body.clientHeight) {
									windowHeight = document.body.clientHeight;
							}
					}
			}
			return( windowHeight );  
	}
	
	function getWindowWidth()
	{
			return window.innerWidth ? window.innerWidth : document.body.offsetWidth;
	}
	
	window.onresize=resizeBox;
