//Размер документа по вертикали
function getDocumentHeight(){
	
	if(BrowserDetect.browser == 'Safari'){
		return (document.body.scrollHeight > document.body.offsetHeight)?document.body.scrollHeight:document.body.offsetHeight;
	}else{
		return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientHeight:document.body.clientHeight;
	}
	
}

//Размер документа по горизонтали
function getDocumentWidth(){
	
	if(BrowserDetect.browser == 'Safari'){
		return (document.body.scrollWidth > document.body.offsetWidth)?document.body.scrollWidth:document.body.offsetWidth;
	}else{
		return document.compatMode=='CSS1Compat' && !window.opera?document.documentElement.clientWidth:document.body.clientWidth;
	}

}

window.onresize = function(){
	//document.getElementById("login_box").style.margin = (getDocumentHeight() / 2 - 125)+"px auto 0 auto";
}

function documentReadyState(){
	//document.getElementById("login_box").style.margin = (getDocumentHeight() / 2 - 125)+"px auto 0 auto";
	document.getElementById("login_box").style.visibility = "visible";
}
