/**
 * @author Dream Web
 */
function resize(){
	if (navigator.appName=="Netscape") {
		winH = window.innerHeight;
	}
	if (navigator.appName.indexOf("Microsoft")!=-1) {
		winH = document.documentElement.clientHeight;
 	}	
	availHeight=winH-303;
	document.getElementById("content").style.height=availHeight+"px";
}