
<!--
var Name = navigator.appName;
var gNavtype = "";
if( Name == "Netscape" ){
	if( navigator.userAgent.substring( 8 , 11 ) < 5.0 ){
		gNavtype = "NS4";
	}
}

if (!isSafari && !isOpera) {
var Wid = document.documentElement.clientWidth || document.body.clientWidth || document.body.scrollWidth;
var Hig = document.documentElement.clientHeight || document.body.clientHeight || document.body.scrollHeight;
} else {
var Wid = window.innerWidth;
var Hig = window.innerHeight;
}

if( Wid < 1024) {

if( gNavtype == "NS4" ) {
	self.outerWidth=1024;
} else {
	window.resizeTo( 1024 , Hig );
}


}

//-->