// JavaScript Document

function js_Validate()
{
	var int_Error=0;
	var str_Error="";
	if(!/\S/.test(send.Name.value))
	{
		var int_Error=int_Error+1;
		var str_Error=str_Error+int_Error+". Your name\n";
	}
	
	if(!/\S/.test(send.Email.value))
	{
		var int_Error=int_Error+1;
		var str_Error=str_Error+int_Error+". Your email address\n";
	}
	
	if(!/\S/.test(send.Subject.value))
	{
		var int_Error=int_Error+1;
		var str_Error=str_Error+int_Error+". Subject\n";
	}	
	
	if(!/\S/.test(send.Comment.value))
	{
		var int_Error=int_Error+1;
		var str_Error=str_Error+int_Error+". Comment\n";
	}

	
	if(int_Error)
	{
		alert("Please be sure to fill in the following\nboxes (Subject line is optional):   \n\n"+str_Error);
		return false;
	}
}