function checkColor(){
var tempobj = document.forms.formName;
var chk = false;
var loopcnt;
var etype = "";
var ename = "";
var evalue = "";
loopcnt = tempobj.length;

for (i=0; i<loopcnt; i=i+1){
	etype = tempobj.elements[i].type;
	ename = tempobj.elements[i].name;
	evalue = tempobj.elements[i].value;
	if( etype == "select-one" ) {
		if( tempobj.elements[i].selectedIndex == "0" ) {
			chk = true;
			break;
		}
	}
}
if( chk ){
	alert("In order to accurately process your order, we need to know which color you desire.\n\n Please select your color from the choices in the drop down box provided.");
	tempobj.elements[i].focus();
	return false;
	}
else {
	return true;
	}
endif
}
