function checkchar(pass){

field=document.booknow.name.value;
target=booknow.name;
var msg="Please remove numbers & special characters from the name field!"

		var notvalid;
		for (var i=0, notvalid="0123456789!@#$%^&*()+=-[]\\\';,./{}|\":<>?"; i<field.length; i++)
		{
       		if (notvalid.indexOf(field.charAt(i)) != -1)
		{
			alert(msg);
			target.focus(); 
			return false;
		}
		}
		

}


function checkemail(){
var cemail=document.booknow.email.value;
if (cemail.length > 1 )
{

if(cemail.indexOf('_@')!=-1 || cemail.indexOf('@_')!=-1 || cemail.indexOf('_.')!=-1 || cemail.indexOf('-@')!=-1 || cemail.indexOf('@-')!=-1 || cemail.indexOf('-.')!=-1)
{
alert("Please input a valid email address!\n\n Ex: me@noname.com");
booknow.email.focus();
return false;
}

var filter=/^([\w-]+(?:\.[\w-]+)*)@((?:[\w-]+\.)*\w[\w-]{0,66})\.([a-z]{2,6}(?:\.[a-z]{2})?)$/i

if (filter.test(cemail))
return true;
else
{
alert("Please input a valid email address!\n\nEx: me@noname.com");
booknow.email.focus();
return false;
}
}
}



function checkfields() 
{
 var msg="(*)Please enter...\n\n";
if ( document.booknow.name.value.length < 1 ) {
				msg +="Your Name!\n";
				}
if ( document.booknow.email.value.length < 1 ) {
				msg +="Your e-mail!!\n";
				}	
if ( document.booknow.message.value.length < 1 ) {
				msg +="Your Message!\n";
				}
			
	if(msg=="(*)Please enter...\n\n") 
        { 
            return true;
        } 
        else 
        { 
            alert(msg); 
            return false; 
        } 			
}


message = "We have unabled right click on our pages. If you are one of our valued customers and would like a copy of a photo placed on our site, please contact us to get your copy.";

function NoRightClick(b) {
   if(((navigator.appName=="Microsoft Internet Explorer")&&(event.button > 1))
   ||((navigator.appName=="Netscape")&&(b.which > 1))){
   alert(message);
   return false;
   }
}
document.onmousedown = NoRightClick;


