// JavaScript Document
<!-- Begin

function goSelect(daform) 
{
	with(daform) 
	{
		top.window.location=options[selectedIndex].value;       // jump to that option's value
	}
} // end of the 'goSelect()' function


function windowPop()
{
detail=window.open("popup.html","detail","width=500,height=500,top=175,left=300,resizable=no,scrollbars=yes,menubar=no,toolbar=no,status=no,location=no")
} // end of the 'windowPop()' function


function setPointer(theRow, thePointerColor)
{
    if (thePointerColor == '' || typeof(theRow.style) == 'undefined') {
        return false;
    }
    if (typeof(document.getElementsByTagName) != 'undefined') {
        var theCells = theRow.getElementsByTagName('td');
    }
    else if (typeof(theRow.cells) != 'undefined') {
        var theCells = theRow.cells;
    }
    else {
        return false;
    }

    var rowCellsCnt  = theCells.length;
    for (var c = 0; c < rowCellsCnt; c++) {
        theCells[c].style.backgroundColor = thePointerColor;
    }

    return true;
} // end of the 'setPointer()' function

function go()
{
	box = document.forms[0].navi;
	destination = box.options[box.selectedIndex].value;
	if (destination) location.href = destination;
}


//  End -->
