function TestEmail(ADDY) { 
	// Script taken from Yehuda Shiran, Ph.D. - He's the man.
	// http://www.webreference.com/js/tips/000310.html
	if (ADDY.length < 5) { return false; }
	var reg1 = /(@.*@)|(\.\.)|(@\.)|(\.@)|(^\.)/;
	var reg2 = /^.+\@(\[?)[a-zA-Z0-9\-\.]+\.([a-zA-Z]{2,3}|[0-9]{1,3})(\]?)$/;
	if (!reg1.test(ADDY) && reg2.test(ADDY)) { return true;
	} else { return false; }
}

function PopUp(URL,HT,WD) { 
	if (!(HT)) { HT = "400"; }
	if (!(WD)) { WD = "400"; }
	default_window = window.open(URL,"PopUp","location=0,menubar=0,resizable=1,scrollbars=1,status=0,titlebar=0,toolbar=0,hotkey=0,width="+WD+",height="+HT+"");
}
