// 
// Contains all Javascript routines for all pages.
//
///////////////////////////////////////////////////////
function printMatchup( theArgs )
{
    var theWindow = window.open( "matchups.cgi?nomenu=1&" + theArgs, 0, "toolbar=no,location=no,directories=no,status=no,menubar=yes,scrollbars=yes,resizable=yes,copyhistory=no,width=625,height=460" );
}

function ieSwapOver( tgtID )
{
    if( navigator.appVersion.indexOf('MSIE') != -1 )
    {
	document.getElementById( tgtID ).className = 'ieDivHover';
    }
}

function ieSwapOut( tgtID )
{
    if( navigator.appVersion.indexOf('MSIE') != -1 )
    {
	document.getElementById( tgtID ).className = 'menu_div';
    }
}

function nullFunc()
{
    var blah = "blah";
}


