<!--
/*
====
Copyright (c) 2008, 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 © 2008 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\nCopyright © 2008 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 © 2008 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 © 2008 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 © 2008 World View Design.");return false;}return true;}


function i1ilil1l1i1li(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 E-mail:  [                 ] \n\n  Copyright © World View Design.");
		me.email.focus();
		return false;
	}

	//topic
	if(me.topic.value == "")
	{
		alert("Please select the topic in the box labeled:      \n\n [ Select a Topic ] \n\n  Copyright © World View Design.");
		me.topic.focus();
		return false;
	}
	else
	{
		//firstName
		if(me.firstName.value == "")
		{
			alert("Please enter your first name in the box labeled:      \n\n First Name:  [                 ] \n\n         Copyright © World View Design.");
			me.firstName.focus();
			return false;
		}
		else
		{
			//lastName
			if(me.lastName.value == "")
			{
				alert("Please enter your last name in the box labeled:      \n\n Last Name:  [                 ] \n\n      Copyright © World View Design.");
				me.lastName.focus();
				return false;
			}
			else
			{
				//phone
				if(me.phone.value == "")
				{
					alert("Please enter your primary phone in the box labeled:      \n\n Primary Phone :  [                 ] \n\n           Copyright © World View Design.");
					me.phone.focus();
					return false;
				}
				else
				{
					//message
					if(me.message.value == "")
					{
						alert("Please enter your questions or comments in the box labeled:       \n\n Questions or Comments: \n [                                                  ] \n\n                 Copyright © World View Design.");
						me.message.focus();
						return false;
					}

				}
			}
		}
	}
}



function nready()
{
alert("Hello");
return false;
}

//-->