function saveclosereload()
{
opener.document.form1.submit();
window.close();
}

function closereload()
{
opener.location.reload()
window.close();
}


function checkForText(strCheckName,strTextName){
 if(eval("document.insuranceForm." + strTextName + ".value !=''")){
      eval("document.insuranceForm." + strCheckName + ".checked=true");
 }else{
      eval("document.insuranceForm." + strCheckName + ".checked=false");
 }
}

