function check(){	
	var strMsg = new String(); 
	strMsg = "All fields marked with a * must be completed\n\nThank You."
	if(document.form1.fromname.value == "" || document.form1.fromemail.value == "" || document.form1.message.value == "")
		{
			alert(strMsg);
			if (document.form1.fromname.value == "")			
				{
					document.form1.fromname.focus();		
					return;
				}
			if (document.form1.fromemail.value == "")			
				{
					document.form1.fromemail.focus();		
					return;
				}				
			if (document.form1.message.value == "") 		
				{
					document.form1.message.focus();		
					return;		
				}
		}
	else
		{
			document.form1.submit();
		}
	}	
