function resize(){
var winHeight, winWidth, IEmoreWidth, IEmoreHeight, IEWidth, IEHeight;
	//firefox, netscape, msn, safari page size
	winHeight = window.innerHeight;
	winWidth = window.innerWidth;
	//ie 6+ page size
	IEmoreWidth = document.documentElement.clientWidth;
    IEmoreHeight = document.documentElement.clientHeight;	
	//ie 5-
	IEWidth = document.body.offsetWidth;
	IEHeight = document.body.offsetHeight;

	if(winHeight != "" && winWidth != ""){
		if(winHeight < 640 || winWidth < 971){
		window.innerHeight = 768;
		window.innerWidth = 1100;
		}
	}
	if(IEmoreHeight != "" && IEmoreWidth != ""){
		if(IEmoreHeight < 640 || IEmoreWidth < 971){
		top.resizeTo(1100,1000);
		}
	}
	if(IEHeight != "" && IEWidth != ""){
		if(IEHeight < 640 || IEWidth < 971){
		top.resizeTo(1100,1000);
		}
	}
}	