function check_form ()
{
  valid = true; // assume valid

  if (document.contact.fname.value.length == 0)
     { valid = false; alert('First Name Must be Filled In!');
      document.contact.fname.focus();return false; }
  if (document.contact.lname.value.length == 0)
     { valid = false; alert('Last Name Must be Filled In!');
      document.contact.lname.focus();return false; }
  
  if (document.contact.address.value.length == 0 &&
      document.contact.mobile.value.length == 0 &&
      document.contact.phone.value.length == 0 &&
      document.contact.email.value.length == 0)
     { valid = false; alert('Address, E-mail, Mobile or Phone Must be Filled In!');
      document.contact.address.focus(); return false;}

	if (document.contact.address.value.length > 0 ||
			document.contact.city.value.length > 0		||
			document.contact.state.value.length > 0	  ||
			document.contact.zip.value.length > 0	)
		{
		  if (document.contact.address.value.length == 0)
			 { valid = false; alert('Address Must be Filled In!');
			  document.contact.address.focus();return false; }
		  if (document.contact.city.value.length == 0)
			 { valid = false; alert('City Must be Filled In!');
			  document.contact.city.focus();return false; }
		  if (document.contact.state.selectedIndex == false )
			 { valid = false; alert('State or Province Must be Filled In!');
			  document.contact.state.focus();return false; }
		  if (document.contact.zip.value.length == 0)
			 { valid = false; alert('Postal Code Must be Filled In!');
			  document.contact.zip.focus();return false; }
		}

  if (document.contact.captcha.value != "JOHN3-16")
     { valid = false; alert('ANTI SPAM validation text typed no match, type it again!');
      document.contact.captcha.focus();return false; }

  if (!valid)
	{
        document.contact.method="POST";
        document.contact.action="mailto:info@masterbiz.biz ? SUBJECT=Contact Form Problem";
        alert ("There is a problem with the completion of this form. \n" +
				  "Master Business Solutions has been notified. \n");
	}

  if (document.contact.email.value.length > 0)
	 {valid = VerifyEmailAddress();}

  if (valid)
        {
  //    alert("Please be patient while your form is processed. \n" +
		//	"DO NOT CLICK SUBMIT AGAIN, it can result in a duplicate information." +
		//	"\n\n Click OK to Continue.");

			document.contact.p1.value="[_] Start-up my business";
			document.contact.p2.value="[_] Create my Website";
			document.contact.p3.value="[_] Add a E-commerce";
			document.contact.p4.value="[_] Add a Form";
			document.contact.p5.value="[_] Web Site Maintenance";
			document.contact.p6.value="[_] Add a Database";

			if (document.contact.purpose1.checked){document.contact.p1.value="[X] Start-up my business"}
			if (document.contact.purpose2.checked){document.contact.p2.value="[X] Create my Website"}
			if (document.contact.purpose3.checked){document.contact.p3.value="[X] Add a E-commerce"}
			if (document.contact.purpose4.checked){document.contact.p4.value="[X] Add a Form"}
			if (document.contact.purpose5.checked){document.contact.p5.value="[X] Web Site Maintenance"}
			if (document.contact.purpose6.checked){document.contact.p6.value="[X] Add a Database"}

			if (document.contact.type[0].checked){document.contact.typex.value="Individual"}
			if (document.contact.type[1].checked){document.contact.typex.value="Small Business"}
			if (document.contact.type[2].checked){document.contact.typex.value="Corporation"}
			if (document.contact.type[3].checked){document.contact.typex.value="Church"}
			if (document.contact.type[4].checked){document.contact.typex.value="Group"}
			if (document.contact.type[5].checked){document.contact.typex.value="Partnership"}
			if (document.contact.type[6].checked){document.contact.typex.value="Medium Business"}
			if (document.contact.type[7].checked){document.contact.typex.value="Community Org."}
			if (document.contact.type[8].checked){document.contact.typex.value="Ministry"}
			if (document.contact.type[9].checked){document.contact.typex.value="Other"}

			if (document.contact.logo[0].checked){document.contact.logox.value="I have my own logo"}
			if (document.contact.logo[1].checked){document.contact.logox.value="I need my own logo"}

			if (document.contact.nav[0].checked){document.contact.navx.value="On the Top"}
			if (document.contact.nav[1].checked){document.contact.navx.value="Under Header"}
			if (document.contact.nav[2].checked){document.contact.navx.value="On the Left"}
			if (document.contact.nav[3].checked){document.contact.navx.value="On the Right"}
			
			if (document.contact.datemm.value.length==0){document.contact.datemm.value="00"}
			if (document.contact.dateyy.value.length==0){document.contact.dateyy.value="0000"}

		  if (document.contact.email.value.length==0){document.contact.email.value="none@none.com"}

			document.contact.submit();
      return true;

        }
   document.contact.email.focus();
   return false;
}


function VerifyEmailAddress()
{
  var Reason  = "Your Email Address appears incorrect.  \n\nPlease check. \n\nReason:"
  var Success = "Email Address entered Correctly!"
  var checkStr = document.contact.email.value;
  var ix = (checkStr.length - 4)
  var RC = true;
  var x = AtSignValid = DoublePeriod = PeriodValid = SpaceValid = ExtValid = RL = 0;

  for (i = 0;  i < checkStr.length;  i++)
  {
    if (checkStr.charAt(i) == '@')
      AtSignValid++;
    else if (checkStr.charAt(i) == '.')
    {
      if (x == (i-1))
        DoublePeriod++;
      else
      {
        x = i;
        PeriodValid++;
      }
    }
    else if (checkStr.charAt(i) == ' ')
      SpaceValid ++;
  }
  if (checkStr.indexOf(".com", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".edu", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".net", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".org", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".gov", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".mil", ix) > -1)
    ExtValid++;
  else if (checkStr.indexOf(".cc", ix) > -1)
    ExtValid++;
  RL = Reason.length;
  if (AtSignValid != 1)
    Reason += "\nOnly one '@' allowed, " + AtSignValid + " found.";
  if (PeriodValid == 0)
    Reason += "\nAddress must contain at least one period.";
  if (SpaceValid > 0)
    Reason += "\nNo Spaces allowed. Address contains " + SpaceValid + " space";
  if (SpaceValid > 1)
    Reason += "s.";
  if (checkStr.length > 120)
    Reason += "\nPlease limit the Email Address to 120 characters.";

  if (RL != Reason.length)
  {
 alert(Reason);
 return false;
  }
  return true;
}

function displaysubcat(form, index) {

		var divs = form.getElementsByTagName("DIV");

		for (var i = 0; i < divs.length; i++) {
					var currentDiv = divs[i];
					var divId = currentDiv.getAttribute("id");
					if (divId != null && divId.indexOf("div_") > -1) {
						  currentDiv.style.display = "none";
					}	
		}

		if (index > -1) {
			var d1 = document.getElementById("div_" + index);
			d1.style.display = '';
		}  

		if (index=="-1"){document.contact.cat.value="";}
		if (index=="1"){document.contact.cat.value="Antiques";}
		if (index=="2"){document.contact.cat.value="Arts & Crafts";}
		if (index=="3"){document.contact.cat.value="Automotive";}
		if (index=="4"){document.contact.cat.value="Beauty";}
		if (index=="5"){document.contact.cat.value="Books";}
		if (index=="6"){document.contact.cat.value="Business";}
		if (index=="7"){document.contact.cat.value="Cameras & Photography";}
		if (index=="8"){document.contact.cat.value="Clothing";}
		if (index=="9"){document.contact.cat.value="Collectibles";}
		if (index=="10"){document.contact.cat.value="Computer Hardware & Software";}
		if (index=="11"){document.contact.cat.value="Culture & Religion";}
		if (index=="12"){document.contact.cat.value="Electronics & Telecom";}
		if (index=="13"){document.contact.cat.value="Entertainment";}
		if (index=="14"){document.contact.cat.value="Entertainment Memorabilia";}
		if (index=="15"){document.contact.cat.value="Food, Drink & Nutrition";}
		if (index=="16"){document.contact.cat.value="Gifts & Flowers";}
		if (index=="17"){document.contact.cat.value="Hobbies, Toys & Games";}
		if (index=="18"){document.contact.cat.value="Home & Garden";}
		if (index=="19"){document.contact.cat.value="Internet & Network Services";}
		if (index=="20"){document.contact.cat.value="Media & Entertainment";}
		if (index=="21"){document.contact.cat.value="Medical & Pharmaceutical";}
		if (index=="22"){document.contact.cat.value="Money Service Businesses";}
		if (index=="23"){document.contact.cat.value="Non-Profit, Political & Religion";}
		if (index=="24"){document.contact.cat.value="Pets & Animals";}
		if (index=="25"){document.contact.cat.value="Real Estate";}
		if (index=="26"){document.contact.cat.value="Services";}
		if (index=="27"){document.contact.cat.value="Sports & Recreation";}
		if (index=="28"){document.contact.cat.value="Travel";}
		if (index=="35"){document.contact.cat.value="Other";}
		
		}

function subcat(index) {
  //document.contact.subc.value=index;

		if (index=="36"){document.contact.subc.value="General";}
		if (index=="37"){document.contact.subc.value="Antiquities";}
		if (index=="38"){document.contact.subc.value="Decorative";}
		if (index=="39"){document.contact.subc.value="Books, Manuscripts";}
		if (index=="40"){document.contact.subc.value="Furniture";}
		if (index=="41"){document.contact.subc.value="Glass";}
		if (index=="42"){document.contact.subc.value="Rugs,Carpets";}
		if (index=="43"){document.contact.subc.value="Pottery";}
		if (index=="44"){document.contact.subc.value="Cultural";}
		
		if (index=="46"){document.contact.subc.value="General";}
		if (index=="47"){document.contact.subc.value="Art Dealer &amp; Galleries";}
		if (index=="48"){document.contact.subc.value="Prints";}
		if (index=="49"){document.contact.subc.value="Painting";}
		if (index=="50"){document.contact.subc.value="Photography";}
		if (index=="51"){document.contact.subc.value="Reproductions";}
		if (index=="52"){document.contact.subc.value="Sculptures";}
		if (index=="53"){document.contact.subc.value="Woodworking";}
		if (index=="54"){document.contact.subc.value="Art &amp; Craft Supplies";}
		if (index=="55"){document.contact.subc.value="Fabrics &amp; Sewing";}
		if (index=="56"){document.contact.subc.value="Quilting";}
		if (index=="57"){document.contact.subc.value="Scrapbooking";}
		
		if (index=="58"){document.contact.subc.value="General";}
		if (index=="59"){document.contact.subc.value="Autos";}
		if (index=="60"){document.contact.subc.value="Aviation";}
		if (index=="61"){document.contact.subc.value="Motorcycles";}
		if (index=="62"){document.contact.subc.value="Parts &amp; Supplies";}
		if (index=="63"){document.contact.subc.value="Services";}
		if (index=="64"){document.contact.subc.value="Vintage and Collectible Vehicles";}
		
		if (index=="65"){document.contact.subc.value="General";}
		if (index=="66"){document.contact.subc.value="Body Care, Personal Hygiene";}
		if (index=="67"){document.contact.subc.value="Fragrances &amp; Perfumes";}
		if (index=="68"){document.contact.subc.value="Makeup";}
		
		if (index=="69"){document.contact.subc.value="General";}
		if (index=="70"){document.contact.subc.value="Audio Books";}
		if (index=="71"){document.contact.subc.value="Children Books";}
		if (index=="72"){document.contact.subc.value="Computer Books";}
		if (index=="73"){document.contact.subc.value="Educational &amp; Textbooks";}
		if (index=="74"){document.contact.subc.value="Magazines";}
		if (index=="75"){document.contact.subc.value="Fiction &amp; Literature";}
		if (index=="76"){document.contact.subc.value="Non-Fiction";}
		if (index=="77"){document.contact.subc.value="Vintage &amp; Collectibles";}
		
		if (index=="78"){document.contact.subc.value="General";}
		if (index=="79"){document.contact.subc.value="Agricultural";}
		if (index=="80"){document.contact.subc.value="Construction";}
		if (index=="81"){document.contact.subc.value="Educational";}
		if (index=="82"){document.contact.subc.value="Industrial";}
		if (index=="83"){document.contact.subc.value="Office Supplies and Equipment";}
		if (index=="84"){document.contact.subc.value="General-Services";}
		if (index=="85"){document.contact.subc.value="Advertising";}
		if (index=="86"){document.contact.subc.value="Employment";}
		if (index=="87"){document.contact.subc.value="Marketing";}
		if (index=="88"){document.contact.subc.value="Meeting Planners";}
		if (index=="89"){document.contact.subc.value="Messaging and Paging Services";}
		if (index=="90"){document.contact.subc.value="Seminars";}
		if (index=="91"){document.contact.subc.value="Publishing";}
		if (index=="92"){document.contact.subc.value="Shipping &amp; Packaging";}
		if (index=="93"){document.contact.subc.value="Wholesale";}
		
		if (index=="95"){document.contact.subc.value="General";}
		if (index=="96"){document.contact.subc.value="Accessories";}
		if (index=="97"){document.contact.subc.value="Cameras";}
		if (index=="98"){document.contact.subc.value="Video Equipment";}
		if (index=="99"){document.contact.subc.value="Film";}
		if (index=="100"){document.contact.subc.value="Supplies";}
		
		if (index=="101"){document.contact.subc.value="Accessories";}
		if (index=="102"){document.contact.subc.value="Babies Clothing &amp; Supplies";}
		if (index=="103"){document.contact.subc.value="Childrens Clothing";}
		if (index=="104"){document.contact.subc.value="Mens Clothing";}
		if (index=="105"){document.contact.subc.value="Shoes";}
		if (index=="106"){document.contact.subc.value="Wedding Clothing";}
		if (index=="107"){document.contact.subc.value="Womens Clothing";}
		if (index=="108"){document.contact.subc.value="General";}
		if (index=="109"){document.contact.subc.value="Jewelry";}
		if (index=="110"){document.contact.subc.value="Watches &amp; Clocks";}
		if (index=="111"){document.contact.subc.value="Rings";}
		
		if (index=="112"){document.contact.subc.value="General";}
		if (index=="113"){document.contact.subc.value="Advertising";}
		if (index=="114"){document.contact.subc.value="Animals";}
		if (index=="115"){document.contact.subc.value="Animation";}
		if (index=="116"){document.contact.subc.value="Coin Operated Banks &amp; Casinos";}
		if (index=="117"){document.contact.subc.value="Coins &amp; Paper Money";}
		if (index=="118"){document.contact.subc.value="Comics";}
		if (index=="119"){document.contact.subc.value="Decorative";}
		if (index=="120"){document.contact.subc.value="Disneyana";}
		if (index=="121"){document.contact.subc.value="Holiday";}
		if (index=="122"){document.contact.subc.value="Knives &amp; Swords";}
		if (index=="123"){document.contact.subc.value="Militaria";}
		if (index=="124"){document.contact.subc.value="Postcards &amp; Paper";}
		if (index=="125"){document.contact.subc.value="Stamps";}
		
		if (index=="126"){document.contact.subc.value="General";}
		if (index=="127"){document.contact.subc.value="Desktop PCs";}
		if (index=="128"){document.contact.subc.value="Monitors";}
		if (index=="129"){document.contact.subc.value="Hardware";}
		if (index=="130"){document.contact.subc.value="Peripherals";}
		if (index=="131"){document.contact.subc.value="Laptops, Notebooks, PDAs";}
		if (index=="132"){document.contact.subc.value="Networking Equipment";}
		if (index=="133"){document.contact.subc.value="Parts and Accessories";}
		if (index=="134"){document.contact.subc.value="General-Software";}
		
		if (index=="139"){document.contact.subc.value="General";}
		if (index=="140"){document.contact.subc.value="Christianity";}
		if (index=="141"){document.contact.subc.value="Metaphysical";}
		if (index=="142"){document.contact.subc.value="New Age";}
		if (index=="143"){document.contact.subc.value="Organizations";}
		if (index=="144"){document.contact.subc.value="Other Faiths";}
		if (index=="145"){document.contact.subc.value="Collectibles";}
		
		if (index=="146"){document.contact.subc.value="General-Telecom";}
		if (index=="147"){document.contact.subc.value="Cell Phones and Pagers";}
		if (index=="148"){document.contact.subc.value="Telephone Cards";}
		if (index=="149"){document.contact.subc.value="Telephone Equipment";}
		if (index=="150"){document.contact.subc.value="Telephone Services";}
		if (index=="151"){document.contact.subc.value="General-Electronics";}
		if (index=="152"){document.contact.subc.value="Car Audio &amp; Electronics";}
		if (index=="153"){document.contact.subc.value="Home Electronics";}
		if (index=="154"){document.contact.subc.value="Home Audio";}
		if (index=="155"){document.contact.subc.value="Gadgets &amp; other electronics";}
		if (index=="156"){document.contact.subc.value="Batteries";}
		if (index=="157"){document.contact.subc.value="Scanners/Radios";}
		if (index=="158"){document.contact.subc.value="Radar Dectors";}
		
		if (index=="162"){document.contact.subc.value="General";}
		if (index=="163"){document.contact.subc.value="Movies";}
		if (index=="164"){document.contact.subc.value="Music";}
		if (index=="165"){document.contact.subc.value="Concerts";}
		if (index=="166"){document.contact.subc.value="Theater";}
		
		if (index=="169"){document.contact.subc.value="General";}
		if (index=="170"){document.contact.subc.value="Autographs";}
		if (index=="171"){document.contact.subc.value="Limited Editions";}
		if (index=="172"){document.contact.subc.value="Movie";}
		if (index=="173"){document.contact.subc.value="Music";}
		if (index=="174"){document.contact.subc.value="Novelties";}
		if (index=="175"){document.contact.subc.value="Photos";}
		if (index=="176"){document.contact.subc.value="Posters";}
		if (index=="177"){document.contact.subc.value="Sports and Fan Shop";}
		if (index=="178"){document.contact.subc.value="Science Fiction";}
		
		if (index=="179"){document.contact.subc.value="General";}
		if (index=="180"){document.contact.subc.value="Coffee &amp; Tea";}
		if (index=="181"){document.contact.subc.value="Food Products";}
		if (index=="182"){document.contact.subc.value="Gourmet Items";}
		if (index=="183"){document.contact.subc.value="Health &amp; Nutrition";}
		if (index=="184"){document.contact.subc.value="Services";}
		if (index=="185"){document.contact.subc.value="Vitamins &amp; Supplements";}
		if (index=="186"){document.contact.subc.value="Weight Management &amp; Health Products";}
		if (index=="187"){document.contact.subc.value="Restaurant";}
		if (index=="188"){document.contact.subc.value="Tobacco";}
		if (index=="189"){document.contact.subc.value="Alcoholic Beverages";}
		
		if (index=="190"){document.contact.subc.value="General";}
		if (index=="191"){document.contact.subc.value="Flowers";}
		if (index=="192"){document.contact.subc.value="Greeting Cards";}
		if (index=="193"){document.contact.subc.value="Humorous Gifts &amp; Novelties";}
		if (index=="194"){document.contact.subc.value="Personalized Gifts";}
		if (index=="195"){document.contact.subc.value="Products";}
		if (index=="196"){document.contact.subc.value="Services";}
		
		if (index=="197"){document.contact.subc.value="General";}
		if (index=="198"){document.contact.subc.value="Action Figures";}
		if (index=="199"){document.contact.subc.value="Bean Babies";}
		if (index=="200"){document.contact.subc.value="Barbies";}
		if (index=="201"){document.contact.subc.value="Bears";}
		if (index=="202"){document.contact.subc.value="Dolls";}
		if (index=="203"){document.contact.subc.value="Games";}
		if (index=="204"){document.contact.subc.value="Model Kits";}
		if (index=="205"){document.contact.subc.value="Diecast, Toys Vehicles";}
		if (index=="206"){document.contact.subc.value="Video Games &amp; Systems";}
		if (index=="207"){document.contact.subc.value="Vintage &amp; Antique Toys";}
		
		if (index=="211"){document.contact.subc.value="General";}
		if (index=="212"){document.contact.subc.value="Appliances";}
		if (index=="213"){document.contact.subc.value="Bed &amp; Bath";}
		if (index=="214"){document.contact.subc.value="Furnishing &amp; Decorating";}
		if (index=="215"){document.contact.subc.value="Garden Supplies";}
		if (index=="216"){document.contact.subc.value="Hardware &amp; Tools";}
		if (index=="217"){document.contact.subc.value="Household Goods";}
		if (index=="218"){document.contact.subc.value="Kitchenware";}
		if (index=="219"){document.contact.subc.value="Rugs &amp; Carpets";}
		if (index=="220"){document.contact.subc.value="Security &amp; Home Defense";}
		if (index=="221"){document.contact.subc.value="Plants and Seeds";}
		
		if (index=="222"){document.contact.subc.value="General";}
		if (index=="223"){document.contact.subc.value="Bulletin board";}
		if (index=="224"){document.contact.subc.value="online services";}
		if (index=="225"){document.contact.subc.value="Auction management tools";}
		if (index=="226"){document.contact.subc.value="ecommerce development";}
		if (index=="227"){document.contact.subc.value="training services";}
		if (index=="228"){document.contact.subc.value="Online Malls";}
		if (index=="229"){document.contact.subc.value="Web hosting and design";}
		
		if (index=="230"){document.contact.subc.value="General";}
		if (index=="231"){document.contact.subc.value="Concerts";}
		if (index=="232"){document.contact.subc.value="Theater";}
		
		if (index=="233"){document.contact.subc.value="General";}
		if (index=="234"){document.contact.subc.value="Medical";}
		if (index=="235"){document.contact.subc.value="Dental";}
		if (index=="236"){document.contact.subc.value="Opthamalic";}
		if (index=="237"){document.contact.subc.value="Prescription Drugs";}
		if (index=="238"){document.contact.subc.value="Devices";}
		
		if (index=="239"){document.contact.subc.value="General";}
		if (index=="240"){document.contact.subc.value="Remittance";}
		if (index=="241"){document.contact.subc.value="Wire Transfer";}
		if (index=="242"){document.contact.subc.value="Money Orders";}
		if (index=="243"){document.contact.subc.value="Electronic Cash";}
		if (index=="244"){document.contact.subc.value="Currency Dealer/Exchange";}
		if (index=="245"){document.contact.subc.value="Check Cashier";}
		if (index=="246"){document.contact.subc.value="Travelers Checks";}
		
		if (index=="248"){document.contact.subc.value="General";}
		if (index=="249"){document.contact.subc.value="Charities";}
		if (index=="250"){document.contact.subc.value="Political";}
		if (index=="251"){document.contact.subc.value="Religious";}
		
		if (index=="252"){document.contact.subc.value="General";}
		if (index=="253"){document.contact.subc.value="Supplies &amp; Toys";}
		
		if (index=="255"){document.contact.subc.value="General";}
		if (index=="256"){document.contact.subc.value="Commercial";}
		if (index=="257"){document.contact.subc.value="Residential";}
		if (index=="258"){document.contact.subc.value="Time Shares";}
		
		if (index=="259"){document.contact.subc.value="General-Government";}
		if (index=="260"){document.contact.subc.value="Legal";}
		if (index=="261"){document.contact.subc.value="Medical";}
		if (index=="262"){document.contact.subc.value="Dental";}
		if (index=="263"){document.contact.subc.value="Vision";}
		if (index=="264"){document.contact.subc.value="General";}
		if (index=="265"){document.contact.subc.value="Child Care Services";}
		if (index=="266"){document.contact.subc.value="Consulting";}
		if (index=="267"){document.contact.subc.value="Importing/Exporting";}
		if (index=="268"){document.contact.subc.value="Insurance-Direct";}
		if (index=="269"){document.contact.subc.value="Financial Services";}
		if (index=="270"){document.contact.subc.value="Graphic &amp; Commercial Design";}
		if (index=="271"){document.contact.subc.value="Landscaping";}
		if (index=="272"){document.contact.subc.value="Locksmith";}
		if (index=="273"){document.contact.subc.value="Online Dating";}
		if (index=="274"){document.contact.subc.value="Event &amp; Wedding Planning";}
		if (index=="275"){document.contact.subc.value="Schools and Colleges";}
		if (index=="276"){document.contact.subc.value="Entertainment";}
		
		if (index=="278"){document.contact.subc.value="General";}
		if (index=="279"){document.contact.subc.value="Bicycles &amp; Accessories";}
		if (index=="280"){document.contact.subc.value="Boating, Sailing &amp; Accessories";}
		if (index=="281"){document.contact.subc.value="Camping &amp; Survival";}
		if (index=="282"){document.contact.subc.value="Exercise Equipment";}
		if (index=="283"){document.contact.subc.value="Fishing";}
		if (index=="284"){document.contact.subc.value="Golf";}
		if (index=="285"){document.contact.subc.value="Hunting";}
		if (index=="286"){document.contact.subc.value="Paintball";}
		if (index=="287"){document.contact.subc.value="Sporting Goods";}
		if (index=="288"){document.contact.subc.value="Swimming Pools &amp; Spas";}
		
		if (index=="289"){document.contact.subc.value="General";}
		if (index=="290"){document.contact.subc.value="Accommodations";}
		if (index=="291"){document.contact.subc.value="Agencies";}
		if (index=="292"){document.contact.subc.value="Airlines";}
		if (index=="293"){document.contact.subc.value="Auto Rentals";}
		if (index=="294"){document.contact.subc.value="Cruises";}
		if (index=="295"){document.contact.subc.value="Other Transportation";}
		if (index=="296"){document.contact.subc.value="Services";}
		if (index=="297"){document.contact.subc.value="Supplies";}
		if (index=="298"){document.contact.subc.value="Tours";}
		if (index=="299"){document.contact.subc.value="Airlines-Spirit Air";}
		
		if (index=="900"){document.contact.subc.value="Other";}

				}
