

function pop3(theURL,theTitle,w,h) {
	var winl = (screen.width - w) / 2;
	var wint = (screen.height - h) / 2;
	window.open(theURL,theTitle,'width='+w+',height='+h+',top=10,left=10,scrollbars=yes,resizable=yes,menubar=no,toolbar=no,location=no,directories=no,status=no');
}


