<!--

function mark(face,field_color,text_color){
 if (document.documentElement){//if browser is IE5+ or NS6+
	face.style.backgroundColor=field_color;
	face.style.color=text_color;
 }
}

var ColorVar;
  function ColorLine(id) {
  	ColorVar=id.style.backgroundColor;
  	id.style.backgroundColor='#DDEEFF';
	id.style.cursor = 'hand';
  }
  function DeColorLine(id) {
  	id.style.backgroundColor=ColorVar;
  }

function disableselect(e){
return false
}

function reEnable(){
return true
}

//if IE4+
document.onselectstart=new Function ("return false")

//if NS6
if (window.sidebar){
document.onmousedown=disableselect
document.onclick=reEnable
}







var message="No right click allowed in this area!";

function clickIE4(){
if (event.button==2){
alert(message);
return false;
}
}

function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){
alert(message);
return false;
}
}
}

if (document.layers){
document.captureEvents(Event.MOUSEDOWN);
document.onmousedown=clickNS4;
}
else if (document.all&&!document.getElementById){
document.onmousedown=clickIE4;
}

document.oncontextmenu=new Function("alert(message);return false")


function noEntry() {

var FN = document.myForm.name.value;
if ((FN.length<1)||(FN.substring(0,1)=="0")) {
	alert("We need your name to send the information.   ");
	document.myForm.name.focus();
	return false;
}

else {


var LN = document.myForm.email.value;
if ((LN.length<1)||(LN.substring(0,1)=="0")) {
	alert("We need your e-mail address to send the information. ");
	document.myForm.email.focus();
	return false;
}

else {

var NF = document.myForm.friendname.value;
if ((NF.length<1)||(NF.substring(0,1)=="0")) {
	alert("We need your friend's name to send the information.");
	document.myForm.friendname.focus();
	return false;
}

else {

var NM = document.myForm.friendemail.value;
if ((NM.length<1)||(NM.substring(0,1)=="0")) {
	alert("We need your friend's e-mail address to send the information.");
	document.myForm.friendemail.focus();
	return false;
}

else { return true; }

}
}
}


}  //End Function noEntry




//-->