function resizeMainDiv()
{
    var winW = parseInt(document.documentElement.clientWidth);
    var winH = parseInt(document.documentElement.clientHeight);
    if (window.innerWidth)
        winW = parseInt(window.innerWidth);
    if (window.innerHeight)
        winH = parseInt(window.innerHeight);
	if(winH >= 755){
		document.getElementById("rs01").style.paddingTop = (winH-755) + "px";
	}else{
		document.getElementById("rs01").style.paddingTop = "0px";
	}
}