// JavaScript Document
<!-- validates Attributes: NP

function validateAttribute()
		{
	if(document.prodform_np.Quantity.selectedIndex==0)
	  {
		document.getElementById("AttributeAlert").style.display = "none";
		document.getElementById("QtyAttributeAlert").style.display = "";	
		//alert("Please select a size.");
		document.prodform_np.Quantity.focus();
		return false;
	  }
	  else
	  {
		document.getElementById("QtyAttributeAlert").style.display = "none";
	  }
	  
	  if(document.prodform_np.product_code.selectedIndex==0)  
      {
		document.getElementById("QtyAttributeAlert").style.display = "none";
		//document.getElementByID("AttributeAlert").style.backgroundColor = "red";
		document.getElementById("AttributeAlert").style.display = "";	
		//alert("Please select a size.");
		document.prodform_np.product_code.focus();
		return false;
	  }
	  else
	  {
		document.getElementById("AttributeAlert").style.display = "none"; 
	    return true;
	  }
}
