function handling(o)
{  
    if(o.checked){
        document.cookie = "handling=15";
        alert("You have elected shipping outside the US.\n\rNo further action is necessary.");
    }
    if(!o.checked)
    {
        document.cookie = "handling=0";
        alert("You have elected US shipping.\n\rNo further action is necessary.");
    }
}
  

