function newWindow(mypage,myname,w,h,s)
{
	lp = (screen.width) ? (screen.width-w)/2 : 0;
	tp = (screen.height) ? (screen.height-h)/2-35 : 0;
	win = window.open(mypage,myname,'fullscreen=no,toolbar=no,status=no,menubar=no,scrollbars='+s+',resizable=no,directories=no,location=no,width='+w+',height='+h+',left='+lp+',top='+tp)
}

