// JavaScript Document
function CheckForm(theform,event)
{
	if (!RequiredText(theform.Name,'Your Name'))
		return false;
	if (!RequiredText(theform.Email,'Your Email'))
		return false;
	return true;
}