﻿// JScript File
// General Javacript - Copyright 2006, 2007 by Nalin D.Jayasuriya, Ottawa ON. Canada
//
function AddDropDownItem($ddlList, strText, strValue)
{
    var option = document.createElement("OPTION");
    option.text = strText;
    option.value = strValue;
    $ddlList.options.add(option);
}

function OpenInNewWindow(strUrl)
{
  window.open(strUrl,'','');
}

function startNow(state)
{
  alert('here');
}