//==========================================================================
// Function: validateAttrSelect(this)
// Description : Validates attribute drop down
// usage: <form action="/cgi-bin/dbform.cgi" method="POST" onsubmit="return checkform(this);">
// note: June 30, 2001
// Author: Ivan Svetic - D.J.'s Micro-Info Inc. (www.deejays.com)


function checkform ( form )
{
     
  if (form.AttributeID[0].selected) {
        alert( "Please select an item from the drop down list." );
        form.AttributeID.focus();
        return false ;
   }	
		
	return true ;
}

//===========================================================================
