/** Form validation **/
function isFilled2(elm){
	if (elm.value == "ERROR: Select a Size" || elm.value == null)
		return false;
	else return true;
}
		
function validate(form){
/** prototype
	if (isFilled(form.***) == false) 
	{
		alert("");
		form.***.focus();
		return false;
	}
**/
if (isFilled2(form.VAR000) == false) 
	{
		alert("Please choose a size.");
		form.VAR000.focus();
		return false;
	}

	return true;
}
/** End Form Validation **/	