<!--
// Common Java Scripts
function setCookie (name,value,expires,path,domain,secure) {
  document.cookie = name + "=" + escape (value) +
    ((expires) ? "; expires=" + expires.toGMTString() : "") +
    ((path) ? "; path=" + path : "") +
    ((domain) ? "; domain=" + domain : "") +
    ((secure) ? "; secure" : "");
}

function getCookie(Name) 
{   
	var search = Name + "=";
	if (document.cookie.length > 0) 
	{ 
		offset = document.cookie.indexOf(search);
		if (offset != -1) 
		{
			offset += search.length;
			end = document.cookie.indexOf(";", offset);
			if (end == -1)
				end = document.cookie.length;
			return (unescape(document.cookie.substring(offset, end)));
		}
		else
			return "";
	}
}

function OnHorzMenuColOver(colId)
{
	document.getElementById(colId).className="CHorzMenuColHighlighted";
}

function OnHorzMenuColOut(colId)
{
	document.getElementById(colId).className="CHorzMenuCol";
	DrawCurrentMenuCols();
}

function OnHorzMenuColClick(linkId)
{
	var vv = document.getElementById(linkId).href;
    //window.navigate(vv);
	window.location.href = vv;
}

function OnVertMenuColOver(colId)
{
	document.getElementById(colId).className="CVertLinkRowHighlighted";
}

function OnVertMenuColOut(colId)
{
	document.getElementById(colId).className="CVertLinkRow";
	DrawCurrentMenuCols();
}

function OnVertMenuColClick(linkId)
{
	var vv = document.getElementById(linkId).href;
    //window.navigate(vv);
	window.location.href = vv;
}

function OnVertMenuColOverBig(colId)
{
	document.getElementById(colId).className="CVertLinkRowHighlightedBig";
}

function OnVertMenuColOutBig(colId)
{
	document.getElementById(colId).className = "CVertLinkRowBig";
	DrawCurrentMenuCols();
}

function OnVertMenuColClickBig(linkId)
{
	var vv = document.getElementById(linkId).href;
    //window.navigate(vv);
	window.location.href = vv;
}

function DrawCurrentMenuCols()
{
	var vvH = document.getElementById(CurrentHorizMenuCol);
	if (vvH != null)
		vvH.className = "CHorzMenuColHighlighted";
		
	vvV = document.getElementById(CurrentVertMenuCol);
	if (vvV != null)
		vvV.className = "CVertLinkRowHighlighted";
}

function MarkInDownloadsPage()
{
	CurrentHorizMenuCol = "HorzCol2";
	DrawCurrentMenuCols();
}

function MarkInOrderPage()
{
	CurrentHorizMenuCol = "HorzCol3";
	DrawCurrentMenuCols();
}
-->