function NewApp()
{
    if(document.f1.t1.value.length<1)
    {
     alert("Please fill [ Passport Name ] here");
     document.f1.t1.focus();
    }
    else if(document.f1.t2.value.length<1)
    {
     alert("Please fill [ Passport Number ] here");
     document.f1.t2.focus();
    }
   else if(document.f1.t3.value.length<1)
    {
     alert("Please fill [ Bill To ] here ");
     document.f1.t3.focus();
    }
   else if(document.f1.t4.value.length<1)
    {
     alert("Please fill [ Country Applied ] for here ");
     document.f1.t4.focus();
    }
   else if(document.f1.t5.value.length<1)
    {
     alert("Please fill [ Type of Visa ] here ");
     document.f1.t5.focus();
    }
  else
    {
	if(confirm("Press Cancel and review once the application   -  \r\r If you are sure, Press OK Button to continue\r"))		
		{
		document.f1.submit();
		}
		//     document.f1.submit();
    }
}