function ctrElement(){
        scrSizeY=document.documentElement.offsetHeight;
        setValY=Math.round(scrSizeY-494);
        if (scrSizeY>750){
            document.getElementById("right-col").style.minHeight=setValY+"px";
        }else{
            document.getElementById("right-col").style.minHeight='250px';
        }
}
//if (navigator.appName!="Microsoft Internet Explorer") {
	addEvent(window, 'load', ctrElement);
	//addEvent(window, 'resize', ctrElement);
	//window.onresize = ctrElement;
	//window.onload = ctrElement;
//}


