function openPopup(url, name, options)
{
   window.open(url,name,options);
}


function selectOption(select, id)
{
   for (i=0; i<select.length; i++)
   {
      if (select.options[i].value == id)
      {
         select.options[i].selected = true;
         return;
      }
   }
}

function checkCondition(checkbox, msg)
{
   if(!checkbox.checked)
   {
      alert(msg);
      return false;
   }
   return true;
}

