<!-- begin
function NewWindow(mypage, myname, w, h, scroll, rs) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable='+rs
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// end-->

<!-- begin
function validate() {

total = document.form1.total.value;
email = document.form1.email.value;


if ((total.length<1)||(total.substring(0,6)=="******")) {
alert("Donation Amount must be provided.")
document.form1.total.focus();
return false;
	}

if (!/^\w+([\.-]?\w+)*@\w+([\.-]?\w+)*(\.\w{2,3})+$/.test(email))
	{
	alert("Invalid E-mail Address! Please re-enter.")
	document.form1.email.focus();	
	return false;
	}
	
}
// end-->

