function formCheck() 
{		
		//force data entry for name field
        if (document.theform.con_name.value == "") 
        {
        alert("You must enter your name.");
		document.theform.con_name.focus();
		return false;
        }	

		//force data entry for phone field
        if (document.theform.con_phone.value == "") 
        {
        alert("You must enter your phone number.");
		document.theform.con_phone.focus();
		return false;
        }		
		
		//force data entry for email field
        if (document.theform.con_email.value == "") 
        {
        alert("You must enter your Email address.");
		document.theform.con_email.focus();
		return false;
        }

		//force data entry for interest field
      if (document.theform.con_interest.selectedIndex == 0) 
      {
      alert("Please Select your Site Interest");
			document.theform.con_interest.focus();
			return false;
      }

		//force data entry for interest field
      if (document.theform.con_has_site.selectedIndex == 0) 
      {
      alert("Please Indicate if you have a web site now");
			document.theform.con_has_site.focus();
			return false;
      }

}

var TheDate = new Date();
var hours = TheDate.getHours();
// hours = 14;
// document.writeln (hours);	
if (hours > 20 || hours < 9)
{
var main = "Call during business hours<BR>Mon - Fri 9 AM - 9 PM EST";
var tampa = "Call during business hours<BR>Mon - Fri 9 AM - 6 PM EST";
var atlanta = "Call during business hours<BR>Mon - Fri 10 AM - 9 PM EST";
// document.writeln (tampa + '<P>' + atlanta);
}
else
{
var main = "(813) 964-3940";
var tampa = "(813) 448-7635";
var atlanta = "(404) 492-6851";
// document.writeln (tampa + '<P>' + atlanta);
}
// document.writeln ('call us now');