var win=null;
function NewWindow(mypage,myname,w,h) {
	myleft=0;	mytop=0;
	if (w > screen.width) w = screen.width-10;
	if (h > screen.height) h = screen.height-70;
	settings="width=" + w + ",height=" + h + ",top=" + mytop + ",left=" + myleft + ",scrollbars=yes,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=yes";
	win=window.open(mypage,myname,settings);
	win.focus();
}