﻿// JScript File

function checkDomesticSelection(ddlObj , rInternationalObj, rDomesticObj)
{

   if(rDomesticObj.checked)
   {return false;}
    
} 

function checkRegisteredUser(chk, pnl, pnlSkip)
{
   //alert(pnl);
   if(chk.checked)
   {
   //alert(chk);
   //pnl.style.display = "";
  // pnlSkip.style.display = "none";
     //return false;
   }
   else
   {
     //pnl.style.display = "none";
    // pnlSkip.style.display = "";
     //return true;
   }
}




