function GenderSelection(elem, AlertMsg){
	if(elem.value == ""){
		alert(AlertMsg);
		elem.focus();
		return false;
	}else{
		return true;
	}
}
function InValidSelection(elem, AlertMsg){
	if(elem.value == ""){
		alert(AlertMsg);
		elem.focus();
		return false;
	}else{
		if(document.additem.idproduct.value==""){
			alert ("Please select Both a Width and a SIZE.");
		    document.additem.idproduct.focus();
		    return false;
		}else{
		return true;
		}
	}
}
function InValidSelection2(elem, AlertMsg){
	if(elem.value == ""){
		alert(AlertMsg);
		return false;
	}else{
		if(document.additem.idproduct.value==""){
			alert ("Please select Both a Width and a SIZE.");
		    return false;
		}else{
		return true;
		}
	}
}