<!--

function ShowMessage() 
{
  	 var s = document.getElementsByName("id[1]")[0];
	 var v = s.options[s.selectedIndex].value;


	 if(v == "0")
	 {
	    alert("This product requires that you select a color. Please try again.");
		/*cancel submit */
		return false;
	 } else {
	    //Do someting else if it is ok you like if it works
	    return true;
	 }     

}

function popupWindow(url) {
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=yes,copyhistory=no,width=100,height=100,screenX=150,screenY=150,top=150,left=150')
}


//-->