/* 
Site Wide Variables:
Official price list for DoyleSoft products.
Use this list when referencing prices... site wide. 
This will keep prices consistent on every html page.
All prices are USD.
*/
kbpr = "$99.95";
kbsuv = "$29.95";
makemoneyprice = "$17.00";
kbupgrade = "$29.95";
filesearch = "$29.95";

/* Other JavaScript variables */
jvarcopyrightyear = "- 2012";

/* Address */
address = "465 North 700 West";
city = "Provo,";
state = "Utah";
zip = "84601";
Country = "U.S.A.";

/* Forms */

function checkInput(form)
	{
 	if(form.Name.value == "")
	 	{
 		alert("Please enter your name.");
 		return false;
 		}

 	if(form.Email.value == "")
	 	{
 		alert("Please enter your email address.");
 		return false;
 		}

 	if(form.Comments.value == "")
	 	{
 		alert("Please enter the message you wish to send.");
 		return false;
 		}

 	if(form.captcha.value == "")
	 	{
 		alert("Please enter the security code.");
 		return false;
 		}

	if(form.captcha.value != "7894")
	       {
	       alert("Please verify the security code. ");
	       return false;
	       }

 	return true;
 	}

