﻿// JScript File
function openCitySelectionWindow()
{
    window.open("/cityselect.aspx", "_blank", "height=150, width=400, left=200, top=200, menubar=no, scrollbars=yes, status=no");
}

function openSubjectSelectionWindow()
{
    window.open("/subjectselect.aspx", "_black", "height=150, width=400, left=200, top=200, menubar=no, scrollbars=yes, status=no");
}

function pickDate()
{
    window.open("/pickDate.aspx", "_black", "height=250, width=400, left=200, top=200, menubar=no, scrollbars=yes, status=no");
}
function showHidePage()
{
    if(document.getElementById("page_other").style.display=="none")
    {
        document.getElementById("page_other").style.display="";
    }
    else
    {
        document.getElementById("page_other").style.display="none";
    }
}