/* POPUP WINDOW */

function newwin(mypage, myname) {
	var winl = (screen.width - 395) / 2;
	var wint = (screen.height - 325) / 2;
	winprops = 'height=325,width=395,top='+wint+',left='+winl+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes'
	win = window.open(mypage, myname, winprops)
	if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
