<!-- 
//	CATALOG REQUEST PAGE - FUNCTION TO CHECK A BOX WHEN A COVER IS PICKED
function addAcheck(checkboxid) {  
	document.getElementById(checkboxid).checked = "checked";  
}  

//	VALIDATION FOR EACH INITIAL LANDING PAGE
function clearLanding() {
	//	CHECK FOR AT LEAST 5 CHARACTERS IN ZIP CODE
	if (landing_form.yCode.value.length < 5) {
		// mesg = "You have entered " + landing_form.yCode.value.length + " character(s)\n"
		mesg = "Please provide at least 5 digits for the zip code.\n"
		alert(mesg);
		landing_form.yCode.focus();
		return (false);
	}
	//	CHECK THAT AT LEAST 1 PRODUCT IS SELECTED
	if ((landing_form.checker.checked == false)) {
		mesg = "Please select an item for your request.\n"
		alert(mesg);
		return (false);
	}
	//	CHECK THAT THE OCCUPATION HAS BEEN MOVED
	if (landing_form.Occupation.value == "null") {
		mesg = "Please Select Your Occupation.\n"
		alert(mesg);
		landing_form.Occupation.focus();
		return (false);
	}
	return (true);
}

//	VALIDATION FOR '02-collection'
function validate(form_var) {
	if(form_var.fname.value.replace(/ /g, '') == '') {
		window.alert("Please enter your First Name");
		form_var.fname.focus();
		return (false);
	} else if (form_var.lname.value.replace(/ /g, '') == '') {
		window.alert("Please enter your Last Name");
		form_var.lname.focus();
		return (false);
	} else if((form_var.email_addy.value != form_var.email_addy_confirm.value)||(form_var.email_addy.value.replace(/ /g, '') == '')) {
		window.alert("Please provide the same email address");
		form_var.email_addy.focus();
		return (false);
	}
	return (true);
}

//	SHOW PHONE DETAILS FOR THOSE DESIRING A PHONE CALL
function showPHONE(val) {
	var phoner01=document.getElementById('p1');var phoner02=document.getElementById('p2');var phoner03=document.getElementById('p3');var phoner04=document.getElementById('p4');
	if(val=="Phone") {phoner01.style.display="block";phoner02.style.display="block";phoner03.style.display="block";phoner04.style.display="block";} 
		else {phoner01.style.display="none";phoner02.style.display="none";phoner03.style.display="none";phoner04.style.display="none";}
}

//	SHOW 'Title' FIELD IF OTHER IS SELECTED FOR OCCUPATION
function showOTHER(val) {
	var other01=document.getElementById('o1');var other02=document.getElementById('o2');
	if(val=="Other") {other01.style.display="block";other02.style.display="block";} 
		else {other01.style.display="none";other02.style.display="none";}
}


-->

