
function go_quickmenu() {
			var qmenu = document.QLinks.QuickLink;
			var qitem = qmenu.options[qmenu.selectedIndex].value;
			
			if (qitem != "") {
				// alert("Jumping to "+qitem);
				window.location.href = qitem;
			}
			else {
				alert("Select an option from this list");
			}
		}
      	

function alternate_rows_2()
    $data,
    $colors = array( 'white', 'gray')

{
// Declare $color as static so it retains its value when program
// execution leaves the local function's scope.
    static $row_count = 0;

    $row_count++;

    if ( $row_count % 2 == 1 )
    {
        $color = $colors[0];
    }
    else if ( $row_count % 2 == 2 )
    {
        $color = $colors[1];
    }
    
    echo '<tr bgcolor="' . $color . '"><td>' . $data . '</td></tr>';
}
