<!--

function winPopup(page, w, h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	var winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars=yes,location=no,menubars=no,toolbars=no,resizable=yes';
	var win = window.open(page, 'popup', winprops)
	return true;
}
//-->