
var off_ss;
var heights;
var widths;

function wwhh() {

if (document.all && document.all.item) {
	heights = document.body.offsetHeight;
	widths = document.body.offsetWidth;
	if (heights>476) {
		//document.body.scroll="no";
	}

	
}
else if (document.layers) {
    heights = window.innerHeight;
    widths = window.innerWidth;
    if (heights>476) {
    		//document.height=window.innerHeight;
    }
  
   
}
else if (document.getElementById) {
    heights = window.innerHeight;
    widths = window.innerWidth;
}


if ((navigator.userAgent.indexOf("Opera 6")!=-1) ||(navigator.userAgent.indexOf("Opera/6")!=-1)) {
	heights = window.innerHeight;
	widths = window.innerWidth;
	
	
}

	

//if (!heights) {	heights=506; }

if (heights<=476) { off_ss=0; }
else { 	off_ss=parseInt((heights-476)); }

}