
function get_Win_Height()
{
		var w = window.document.documentElement.scrollHeight;
	
		var ua = navigator.userAgent.toLowerCase();
		if(ua.indexOf("chrome") != -1  )
		{
			w= window.document.body.scrollHeight;
		}
		if(ua.indexOf("msie") != -1  )
		{
			if( document.documentElement.scrollHeight > document.documentElement.clientHeight )
				w= document.documentElement.scrollHeight;
			else w=document.documentElement.clientHeight;
		}
		return w;
};

function STD_Resize()
{
	var h;
	if( document.documentElement.scrollHeight > document.documentElement.clientHeight )
				 h= document.documentElement.scrollHeight;
			else h=document.documentElement.clientHeight;
		
	var ua = navigator.userAgent.toLowerCase();
	if(ua.indexOf("chrome") != -1  )
	{
			if( window.document.body.scrollHeight > window.document.body.clientHeight )
				 h= window.document.body.scrollHeight;
			else h=window.document.body.clientHeight;
	}
			/*
	if( document.getElementById("div_center").clientHeight > 150 )
	{
		document.getElementById("div_center").style['height'] = ( document.documentElement.clientHeight - 340 ) + "px";
		document.getElementById("d_t_center").style['height'] = ( document.documentElement.clientHeight - 340 ) + "px";
	}
	else
	{
		document.getElementById("div_center").style['height'] = ( 150 ) + "px";
		document.getElementById("d_t_center").style['height'] = ( 150 ) + "px";	
	}
	*/
	document.getElementById("div_center").style['height'] = ( h - 340 ) + "px";
	document.getElementById("d_t_center").style['height'] = ( h - 340 ) + "px";
	
	document.getElementById("td_b_rl").style['height'] = ( h - 836) + "px";
	document.getElementById("td_b_rr").style['height'] = ( h - 836) + "px";
} 
