//This JS file is used by all html files which consists dropdown menu of J9 Radio site*/
//Writen by Nethali Kumara Zoysa, 03/05/2005
//Copyrighted by JNine IT

//Expand the dropdown menu
function expand(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuHover";
  d.className = "menuHover";
}

//Close the dropdown menu
function collapse(s)
{
  var td = s;
  var d = td.getElementsByTagName("div").item(0);

  td.className = "menuNormal";
  d.className = "menuNormal";
}

//Open "request.html" file within a formatted window
function requests()
{
window.open("request.html","my_new_window1","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=800, height=295")
}

//Open "register.html" file within a formatted window
function register()
{
WinID = window.open("register.html","my_new_window1","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=700, height=510");
WinID = window.open("register.html","my_new_window1","toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no, copyhistory=no, width=700, height=510");
//WinID.location.reload(1);
WinID.history.go(0);
WinID.focus();
}

