// JavaScript Document
var f;
function contactMe()
{
	if(f.name.value=="")
	{
		Ext.MessageBox.alert("Error","Please enter your name.   ");
		return false;
	}
	if( f.email.value != "" )
	{
		if(!check_email(f.email.value))
		{
			Ext.MessageBox.alert("Error","Please enter a valid email address.     ");
			return false;
		}
	}
	if(f.subject.value=="")
	{
		Ext.MessageBox.alert("Error","Please enter a subject.  ");
		return false;
	}
	if( f.message.value == "" )
	{
		Ext.MessageBox.alert("Error","Please enter your message.");
		return false;
	}
	if( f.auth.value == "")
	{
		Ext.MessageBox.alert("Error","Please enter the verification code.");
		return false;
	}
	
	f.submit();
}
Ext.onReady(function(){
	f = document.contactForm;
	
});