function validate_form ( )
	
{   		
	for (i=0;i<10;i++)
	{
  	

    if ( document.Comments.elements[i].value == "" )
    {
        alert ( 'Missing Information  ' + document.Comments.elements[i].name );
        document.Comments.elements[i].focus()

		return false;
		
    }
	
	
	}
		return true;
	
}


