var ua = navigator.userAgent;
var winWidth = 435;
var winHeight = 560;

if( ua.indexOf("MSIE",0) >=0 ){
	window.resizeTo(winWidth, winHeight);
}
else if( ua.indexOf("Netscape6",0) >=0 || ua.indexOf("Mozilla/4",0) >=0){
	window.outerWidth = winWidth;
	window.outerHeight = winHeight;
}