
    <!--
    function validateForm(){
    if(document.online.custom1.selectedIndex==0)
    {
    alert("Please select a Plaque Base.");
    document.online.custom1.focus();
    return false;
    }
	else if(document.online.custom2.selectedIndex==0)
    {
    alert("Please select a Plate Color.");
    document.online.custom2.focus();
    return false;
    }
	else if(document.online.custom3.selectedIndex==0)
    {
    alert("Add trim plate?");
    document.online.custom3.focus();
    return false;
    }
	else if(document.online.custom4.value == '')
    {
    alert("Inventor Name(s).");
    document.online.custom4.focus();
    return false;
    }
	else if(document.online.custom5.selectedIndex==0)
    {
    alert("Include assignee?.");
    document.online.custom5.focus();
    return false;
    }
	else if(document.online.custom6.value == '')
    {
    alert("Please insert patent number.");
    document.online.custom6.focus();
    return false;
    }
	else if(document.online.custom7.value == '')
    {
    alert("Please insert issue date.");
    document.online.custom7.focus();
    return false;
    }
    
    return true;
    }
    //-->
 