<!--
var browser_width=0;var browser_height=0;var non_ie=0;var ie6=0;var ie4=0;var safari=(navigator.userAgent.indexOf('Safari')!=-1);var konqueror=(!safari&&(navigator.userAgent.indexOf('Konqueror')!=-1))?true:false;widthCheck=window.innerWidth
heightCheck=window.innerHeight
window.onresize=ResizeFix
function ResizeFix()
{if(typeof(window.innerWidth)=='number'){non_ie=1;browser_width=window.innerWidth;browser_height=window.innerHeight;}else if(document.documentElement&&(document.documentElement.clientWidth||document.documentElement.clientHeight)){ie6=1;browser_width=document.documentElement.clientWidth;browser_height=document.documentElement.clientHeight;}else if(document.body&&(document.body.clientWidth||document.body.clientHeight)){ie4=1;browser_width=document.body.clientWidth;browser_height=document.body.clientHeight;}
if(browser_height>browser_width*0.75)
browser_height=browser_width*0.75;if(widthCheck!=window.innerWidth||heightCheck!=window.innerHeight)
document.location.href=document.location.href;}
function FluidLoad()
{ResizeFix();var length=0;var objlist;if(document.all)
length=document.all.length;else if(document.layers)
length=document.layers.size;else
{objlist=document.getElementsByTagName("*")
length=objlist.length}
for(var i=0;i<length;i++)
{var curobj;if(document.all)
curobj=document.all[i];else if(document.layers)
curobj=document.layers[i]
else
curobj=objlist.item(i);if(!curobj)
continue;if((curobj.style.left!="")&&(curobj.style.top!="")&&(curobj.style.width!="")&&(curobj.style.height!=""))
{var start_x=curobj.style.left.substr(0,curobj.style.left.length-1);var start_y=curobj.style.top.substr(0,curobj.style.top.length-1);var cur_width=curobj.style.width.substr(0,curobj.style.width.length-1);var cur_height=curobj.style.height.substr(0,curobj.style.height.length-1);var left=browser_width*start_x/100;var top=browser_height*start_y/100;var width=browser_width*cur_width/100;var height=browser_height*cur_height/100;curobj.style.left=left+"px";curobj.style.top=top+"px";curobj.style.width=width+"px";curobj.style.height=height+"px";}
if(curobj.style.fontSize)
{if(safari||konqueror)
{var font_size=curobj.style.fontSize.substr(0,curobj.style.fontSize.length-2)*browser_height/725;curobj.style.fontSize=font_size+"px";}
else
{var font_size=curobj.style.fontSize.substr(0,curobj.style.fontSize.length-2)*browser_height/680;curobj.style.fontSize=font_size+"px";}}
if(curobj.currentStyle)
var computed_left_width=curobj.currentStyle['border-left-width']
else
{var curStyle=document.defaultView.getComputedStyle(curobj,null);var computed_left_width=curStyle?curStyle.getPropertyValue('border-left-width'):"0px";}
if(computed_left_width!="0px")
{if(computed_left_width)
{var left_width=computed_left_width.substr(0,computed_left_width.length-2)*browser_height/680;curobj.style.borderLeftWidth=left_width+"px";}}
if(curobj.currentStyle)
var computed_right_width=curobj.currentStyle['border-right-width']
else
{var curStyle=document.defaultView.getComputedStyle(curobj,null);var computed_right_width=curStyle?curStyle.getPropertyValue('border-right-width'):"0px";}
if(computed_right_width!="0px")
{if(computed_right_width)
{var right_width=computed_right_width.substr(0,computed_right_width.length-2)*browser_height/680;curobj.style.borderRightWidth=right_width+"px";}}
if(curobj.currentStyle)
var computed_top_width=curobj.currentStyle['border-top-width']
else
{var curStyle=document.defaultView.getComputedStyle(curobj,null);var computed_top_width=curStyle?curStyle.getPropertyValue('border-top-width'):"0px";}
if(computed_top_width!="0px")
{if(computed_top_width)
{var top_width=computed_top_width.substr(0,computed_top_width.length-2)*browser_height/680;curobj.style.borderTopWidth=top_width+"px";}}
if(curobj.currentStyle)
var computed_bottom_width=curobj.currentStyle['border-bottom-width']
else
{var curStyle=document.defaultView.getComputedStyle(curobj,null);var computed_bottom_width=curStyle?curStyle.getPropertyValue('border-bottom-width'):"0px";}
if(computed_bottom_width!="0px")
{if(computed_bottom_width)
{var bottom_width=computed_bottom_width.substr(0,computed_bottom_width.length-2)*browser_height/680;curobj.style.borderBottomWidth=bottom_width+"px";}}}}
function getObjectById(id)
{if(document.getElementById)
return document.getElementById(id);else if(document.all)
return document.all[id];else if(document.layers)
return document.layers[id];}