<!--
/*
====
Copyright (c) 2007, World View Design. All rights reserved.
Protected by copyright and license restricting use. This software
is licensed, not sold, for use only under expressed written consent
from World View Design. This software is protected by United States
copyright laws and international treaties. Unauthorized reproductions or
distributions are subject to civil and criminal penalties and are strictly prohibited.
====
*/
function cke(e){ic = " /:,;";for(i=0; i<ic.length; i++){bc = ic.charAt(i);if(e.indexOf(bc,0) > -1){alert("INVALID EMAIL ADDRESS\n\nYour email address contains invalid characters.        \nInvalid characters for an email address are:\n\n(1) Blank Space\n(2) Slash /\n(3) Colon :\n(4) Comma ,\n(5) Semicolon ;\n\n\n      Copyright © World View Design.");return false;}}atPos = e.indexOf("@",1);if(atPos == -1){alert("INVALID EMAIL ADDRESS\n\nAn email address must have the @ sign         \nseparating your name from your ISP.\nA valid email address should look like:\n\nYourName@YourISP.com\n\n\n Copyright © World View Design.");return false;}if(e.indexOf("@",atPos+1) > -1){alert("INVALID EMAIL ADDRESS\n\nYour email address has two or more @ signs. An email address        \nrequires one @ sign separating your name from your ISP.\nA valid email address should look like:\n\nYourName@YourISP.com\n\n\n                  Copyright © World View Design.");return false;}p = e.indexOf(".",atPos);if(p == -1){alert("INVALID EMAIL ADDRESS\n\nAn email address requires a period following your ISP.        \nA valid email address should look like:\n\nYourName@YourISP.com\n\n\n           Copyright © World View Design.");return false;}if(p+3 > e.length){alert("INVALID EMAIL ADDRESS\n\nAn email address must have at least two\ncharacters after the period that follows your ISP.        \nA valid email address should look like:\n\nYourName@YourISP.com\n\n\n       Copyright © World View Design.");return false;}return true;}



function ijiliijljijli(me)
{

	//CHEQUEA EL COREO
	if(me.email.value != "")
	{
		if(!cke(me.email.value))
		{
			me.email.focus();
			me.email.select();
			return false;
		}
	}
	else
	{
		alert("Please enter your e-mail in the box labeled:      \n\n Your E-mail:  [                 ] \n\n Copyright © World View Design.");
		me.email.focus();
		return false;
	}


	//NOMBRE
	if(me.name.value == "")
	{
		alert("Please enter your name in the box labeled:      \n\n Name:  [                 ] \n\n Copyright © World View Design.");
		me.name.focus();
		return false;
	}
	else
	{
		//COMPANIA
		if(me.company.value == "")
		{
			alert("Please enter your company name in the box labeled:      \n\n Company:  [                 ] \n\n          Copyright © World View Design.");
			me.company.focus();
			return false;
		}
		else
		{
			//TELEFONO
			if(me.phone.value == "")
			{
				alert("Please enter your phone number in the box labeled:      \n\n Phone:  [                 ] \n\n         Copyright © World View Design.");
				me.phone.focus();
				return false;
			}
			else
			{
				//ESCUCHO
				if(me.hear.value == "")
				{
					alert("Please tell us how you heard about us in the box labeled:      \n\n How did you hear about us?  [                 ] \n\n               Copyright © World View Design.");
					me.hear.focus();
					return false;
				}

			}
		}
	}
}

//-->