window.onload = function(){
 browserScaleSet(200);
}

browserScaleSet = function(y) {
 var Height = "100%";
 if(y != 0) Height = y + "px";
 var cb = new checkbrowser();

 if (cb.firefox) {
	
 	document.getElementById("wrapper").style.height = Height;
 }else{
	
	document.getElementById("main").style.height = Height;
 }
}


