		function val_addProd()
    
		{
		
			if (document.frm_addProd.frm_Iname.value == "") 
			{
				alert("Please enter item name.");
				return false;
			}
			
			if (document.frm_addProd.frm_Imfgr.value == "") 
			{
				alert("Please enter item's manufacturer.");
				return false;
			}
			
			if (document.frm_addProd.frm_Inumber.value == "") 
			{
				alert("Please enter applicable item number reference.");
				return false;
			}
			
			if (document.frm_addProd.frm_Wprice.value == "") 
			{
				alert("Please enter the product's wholesale price.");
				return false;
			}
			
			if (document.frm_addProd.frm_Idesc.value == "") 
			{
				alert("Please enter the product's description.");
				return false;
			}
					
			
		}
		
		function val_b2b()
    
		{
		
			if (document.frm_B2B.frm_Company.value == "") 
			{
				alert("Please enter your company name.");
				return false;
			}
					
			
			if (document.frm_B2B.frm_CompanyAddress.value == "") 
			{
				alert("Please enter the company's address.");
				return false;
			}					
			
			
			if (document.frm_B2B.frm_CompanyCity.value == "") 
			{
				alert("Please enter the company's city.");
				return false;
			}
			
			if (document.frm_B2B.frm_CompanyState.value == "") 
			{
				alert("Please enter the company's state.");
				return false;
			}
			
			if (document.frm_B2B.frm_CompanyZip.value == "") 
			{
				alert("Please enter the company's ZipCode.");
				return false;
			}
			
			if (document.frm_B2B.frm_CompanyFax.value == "") 
			{
				alert("Please enter the company's Fax Number.");
				return false;
			}
			
			if (document.frm_B2B.frm_FirstName.value == "") 
			{
				alert("Please enter the first name of business contact.");
				return false;
			}
			
			if (document.frm_B2B.frm_LastName.value == "") 
			{
				alert("Please enter the last name of business contact");
				return false;
			}
			
			if (document.frm_B2B.frm_email.value == "") 
			{
				alert("Please enter the e-mail address of business contact.");
				return false;
			}
			
			if (document.frm_B2B.frm_phoneNumber.value == "") 
			{
				alert("Please enter contact telephone number.");
				return false;
			}
			
			if (document.frm_B2B.frm_Pw1.value == "") 
			{
				alert("Please set a password.");
				return false;
			}
			
			if (document.frm_B2B.frm_Pw2.value == "") 
			{
				alert("Please Retype password.");
				return false;
			}
			
		}
		
		
		function frm_AdminCopySel()
    
		{
		
			if (document.frm_copyAdmin.frm_ContentArea.value == "") 
			{
				alert("Please select content area.");
				return false;
			}
					
			
		}
		
		
		function val_contactUS()
    
		{
			if (document.frm_contactUS.frm_fname.value == "") 
			{
				alert("Please enter your first name.");
				return false;
			}
			
			if (document.frm_contactUS.frm_Telephone.value == "") 
			{
				alert("Please enter your contact telephone number.");
				return false;
			}
			
			if (document.frm_contactUS.frm_email.value.indexOf("@") == -1 ||
				document.frm_contactUS.frm_email.value == "") 
			{
				alert("Please enter your proper email address.");
				return false;
			}		
			
			if (document.frm_contactUS.frm_subject.value == "") 
			{
				alert("Please enter your email's subject reference.");
				return false;
			}
			
			if (document.frm_contactUS.frm_message.value == "") 
			{
				alert("Please enter your message.");
				return false;
			}
			
			
		}
		
		
		function val_b2c() 
    
		{
		
			if (document.frm_b2c.frm_FirstName.value == "") 
			{
				alert("Please enter your first name");
				return false;
			}
			
			if (document.frm_b2c.frm_LastName.value == "") 
			{
				alert("Please enter your last name");
				return false;
			}
			
			if (document.frm_b2c.frm_email.value == "") 
			{
				alert("Please enter your e-mail address");
				return false;
			}		
			
			if (document.frm_b2c.frm_phoneNumber.value == "") 
			{
				alert("Please enter your telephone number");
				return false;
			}
			
			if (document.frm_b2c.frm_Pw1.value == "") 
			{
				alert("Please set a password");
				return false;
			}
			
			if (document.frm_b2c.frm_Pw2.value == "") 
			{
				alert("Please retype your password");
				return false;
			}
			
		}
		
		function shiptoval() 
    
		{
			
			if (document.shipto.ccnum.value == "") 
			{
				alert("Please enter the credit card number.");
				return false;
			}
			
			if (document.shipto.mmonth.value == "") 
			{
				alert("Please enter the credit card expiration month.");
				return false;
			}
			
			if (document.shipto.yyear.value == "") 
			{
				alert("Please enter the credit card expiration year.");
				return false;
			}
			
			if (document.shipto.noc.value == "") 
			{
				alert("Please enter the Name as it appears on the card.");
				return false;
			}
			
			//<% If session("CV2") = True Then %>
			
			if (document.shipto.frm_sec_Code.value == "") 
			{
				alert("Please enter the 3 or 4 digit security found on back your credit card. AMEX holders can find the 4 digit number found in the front..");
				return false;
			}
			
			//<% End if %>
			
			if (document.shipto.frm_BillAddress.value == "") 
			{
				alert("Please enter the billing address of the card.");
				return false;
			}
			
			if (document.shipto.frm_BillCity.value == "") 
			{
				alert("Please enter the billing city of the card.");
				return false;
			}
			
			if (document.shipto.frm_BillState.value == "") 
			{
				alert("Please enter the billing state of the card.");
				return false;
			}
			
			if (document.shipto.frm_BillZip.value == "") 
			{
				alert("Please enter the billing Zip-Code of the card.");
				return false;
			}
			
			if (document.shipto.shpto_Att.value == "") 
			{
				alert("Please enter the shipment's receiving party.");
				return false;
			}
			
			if (document.shipto.shpto_Addr.value == "") 
			{
				alert("Please enter the ship to (Street Address).");
				return false;
			}
			
			if (document.shipto.shpto_City.value == "") 
			{
				alert("Please enter the ship to (City).");
				return false;
			}
			
			if (document.shipto.shpto_ST.value == "") 
			{
				alert("Please enter the ship to (State).");
				return false;
			}
			
			if (document.shipto.shpto_ZP.value == "") 
			{
				alert("Please enter the ship to (Zip-Code).");
				return false;
			}
			    			
		}	
		
		function blank_adminlogin() 
    
		{
		
			if (document.form_adminlogin.frm_usrid.value == "") 
			{
				alert("Please enter your User Name.");
				return false;
			}
			
			if (document.form_adminlogin.frm_password.value == "") 
			{
				alert("Please enter your password.");
				return false;
			}
    			
		}
