function openWin(url,w,h) {
	if (navigator.userAgent.substring(0,9) >= "Mozilla/3") moz3="1"; else moz3="0";
	if (moz3 == "1") { if (typeof(popupWin) != 'undefined') { if (!popupWin.closed) popupWin.close();} }
	popupWin = window.open(url,'newin',' width='+w+',height=' +h+',toolbar=no,menubar=no,scrollbars=yes,resizable=yes,location=no,directories=no,status=no');
}	

function popUp(message) {
	popupMes = confirm(message);
}

function newWin(url,w,h) {
	if (navigator.userAgent.substring(0,9) >= "Mozilla/3") moz3="1"; else moz3="0";
	if (moz3 == "1") { if (typeof(popupWin) != 'undefined') { if (!popupWin.closed) popupWin.close();} }
	popupWin = window.open(url,'newin',' width='+w+',height=' +h+',toolbar=yes,menubar=yes,scrollbars=yes,resizable=yes,location=yes,directories=no,status=no');
}	
