<!--
function checkEmail(theControl)
{
	emv = theControl.value;
	filter=/^.+@.+\..{2,3}$/
	if (filter.test(emv) && emv.match(/\b(^(\S+@).+((\.com)|(\.net)|(\.edu)|(\.mil)|(\.gov)|(\.org)|(\..{2,2}))$)\b/gi)) 
	{
		return true;
	} 
	else 
	{
		alert("Please input a valid email address!")
		theControl.focus();
		return false;
	}
}

function SwapImage(obj,newImg)
{
	obj.src = newImg
}
//-->
