<!--


//--------------------------------------------------
// BROWSER HEIGHT CHECK
//--------------------------------------------------

function getBrowserHeight(){
	if (window.innerHeight){
		return window.innerHeight; }
	else if (document.documentElement && (document.documentElement.clientHeight != 0 || document.documentElement.clientHeight != undefined )){
		return document.documentElement.clientHeight; }
	else if (document.body){
		return document.body.clientHeight; }
		return 0;
}

function checkH(){
	var hhh = getBrowserHeight();
	var min = 1800-55;
	if(hhh <= 74 + min){
		contents.document.getElementsByTagName("body")[0].style.backgroundPosition = "0px -55px";
	}else{
		contents.document.getElementsByTagName("body")[0].style.backgroundPosition = "left bottom";
	}
}




function doOnResize(){
	checkH();
}


// -- ACTIVE
window.onresize = doOnResize;
//-->
