function SubmitCustomerLogin1(){
    var theForm = document.forms['aspnetForm'];
    if (!theForm) {
        theForm = document.aspnetForm;
    }
    
    //theForm.action = 'http://206.83.204.68/FreightManagementSystem/loginpartner.aspx'
	theForm.action = 'http://localhost/netsuiteintegration/loginpartner.aspx'
    theForm.target = '_self';
    theForm.submit();
}

