function loadFrames(menupage1,viewpage2) {
eval("parent.menu.location='"+menupage1+"'");
eval("parent.mainview.location='"+viewpage2+"'");
}
function loadFrames3(topicpage0,menupage1,viewpage2) {
eval("parent.folders.location='"+topicpage0+"'");
eval("parent.menu.location='"+menupage1+"'");
eval("parent.mainview.location='"+viewpage2+"'");
}

function OpenWindow(wWidth,wHeight,wName) {
		var sURL = "";    //The URL for the page to be opened in the new window.
		var sFeatures = "";            //A list of parameters which define the appearance of the new window.
		sFeatures = sFeatures + "width=" + wWidth;   //Set the height and width of the window in pixels.
		sFeatures = sFeatures + ",height=" + wHeight;
		sFeatures = sFeatures + ",toolbar=no";            //Disable the window's toolbar.
		sFeatures = sFeatures + ",location=no";           //Disable the window's location bar.
		sFeatures = sFeatures + ",directories=no";        //Disable the window's directory button bar.
		sFeatures = sFeatures + ",status=no";             //Disable the window's location bar.
		sFeatures = sFeatures + ",menubar=no";            //Disable the window's menu bar.
		sFeatures = sFeatures + ",scrollbars=no";        //Give the window scrollbars.
		sFeatures = sFeatures + ",resizable=yes";         //Make the window resizable.
		sURL = wName + ".html";
		
		window.open(sURL, wName, sFeatures);
	}
function OpenWindow2(wWidth,wHeight,wName,sURL) {
		var sFeatures = "";            //A list of parameters which define the appearance of the new window.
		sFeatures = sFeatures + "width=" + wWidth;   //Set the height and width of the window in pixels.
		sFeatures = sFeatures + ",height=" + wHeight;
		sFeatures = sFeatures + ",toolbar=no";            //Disable the window's toolbar.
		sFeatures = sFeatures + ",location=no";           //Disable the window's location bar.
		sFeatures = sFeatures + ",directories=no";        //Disable the window's directory button bar.
		sFeatures = sFeatures + ",status=no";             //Disable the window's location bar.
		sFeatures = sFeatures + ",menubar=no";            //Disable the window's menu bar.
		sFeatures = sFeatures + ",scrollbars=no";        //Give the window scrollbars.
		sFeatures = sFeatures + ",resizable=yes";         //Make the window resizable.
		window.open(sURL, wName, sFeatures);
	}

function init ( )
{
  timeDisplay = document.createTextNode ( "" );
  document.getElementById("gmtclock").appendChild ( timeDisplay );
  document.getElementById("localclock").appendChild ( timeDisplay );
}

function updateGmtClock ( )
{
var curGmtDateTime = new Date();
var curDateTime = new Date();
var currentGmtTimeString = curGmtDateTime.toGMTString();
var currentTimeString = curDateTime.toLocaleString();
document.getElementById("gmtclock").firstChild.nodeValue = currentGmtTimeString;
document.getElementById("localclock").firstChild.nodeValue = currentTimeString;
}




//SuckerTree Vertical Menu 1.1 (Nov 8th, 06)
//By Dynamic Drive: http://www.dynamicdrive.com/style/

var menuids=["suckertree1"] //Enter id(s) of SuckerTree UL menus, separated by commas

function buildsubmenus(){
for (var i=0; i<menuids.length; i++){
  var ultags=document.getElementById(menuids[i]).getElementsByTagName("ul")
    for (var t=0; t<ultags.length; t++){
    ultags[t].parentNode.getElementsByTagName("a")[0].className="subfolderstyle"
		if (ultags[t].parentNode.parentNode.id==menuids[i]) //if this is a first level submenu
			ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item
		else //else if this is a sub level submenu (ul)
		  ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it
    ultags[t].parentNode.onmouseover=function(){
    this.getElementsByTagName("ul")[0].style.display="block"
    }
    ultags[t].parentNode.onmouseout=function(){
    this.getElementsByTagName("ul")[0].style.display="none"
    }
    }
		for (var t=ultags.length-1; t>-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars
		ultags[t].style.visibility="visible"
		ultags[t].style.display="none"
		}
  }
}

if (window.addEventListener)
window.addEventListener("load", buildsubmenus, false)
else if (window.attachEvent)
window.attachEvent("onload", buildsubmenus)

