function NewWindow(mypage, myname, w, h, scroll, resize) {
	if(screen.width <=800){
		resize=1;
	}
	if (mypage == ""){
	} else {
		var winl=(screen.width - w) / 2;
		var wint=(screen.height - h) / 2;
		movie='height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+resize;
		myWin=window.open(mypage, myname, movie);
		myWin.focus();
	}
}

