﻿// JScript File

function CheckCalling()
{
   if(document.getElementById("ddlCountry").value=="0")
   {
      alert('Please select a  country');
      document.getElementById("ddlCountry").focus();
      return false;
   }  
   if(document.getElementById("ddlCallingTo").value=="0")
   {
      alert('Please select a destination country');
      document.getElementById("ddlCallingTo").focus();
      return false;
   }  
      
   var url = 'http://www.youtring.com/calling-plans.aspx?_ddlCountry='+document.getElementById("ddlCountry").value+'&_ddlCallingTo='+document.getElementById("ddlCallingTo").value+'&_rdoMode=MOBILE&_ddlViaMbOrPC=2';
   location.href=url;
}