// JavaScript Documentfunction VersionNavigator(Netscape, Explorer) {	if ((navigator.appVersion.substring(0,3) >= Netscape && navigator.appName == 'Netscape') ||	(navigator.appVersion.substring(0,3) >= Explorer && navigator.appName.substring(0,9) == 'Microsoft'))	return true;	else return false;}function loadWin(filename, windowname, width, height){               sFeatures = "toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=" + width + ",height=" + height;        var wAppWindow = window.open( filename, windowname, sFeatures );                sBrowserInfo = new String( navigator.appVersion );                // If the browser is not Mac or IE3, then bring window to front. This is automatic on Mac IE3 and will cause a javascript error if you force the focus.                if ( sBrowserInfo.indexOf( "Macintosh" ) == -1 && sBrowserInfo.indexOf( "MSIE 3" ) == -1 )        {                wAppWindow.window.focus();        }}function loadInvoiceWin(filename, windowname){               var wAppWindow = window.open( filename, windowname);                sBrowserInfo = new String( navigator.appVersion );                // If the browser is not Mac or IE3, then bring window to front. This is automatic on Mac IE3 and will cause a javascript error if you force the focus.                if ( sBrowserInfo.indexOf( "Macintosh" ) == -1 && sBrowserInfo.indexOf( "MSIE 3" ) == -1 )        {                wAppWindow.window.focus();        }}function MM_reloadPage(init) {  //reloads the window if Nav4 resized  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();}MM_reloadPage(true);browser_name = navigator.appName;browser_version = parseFloat(navigator.appVersion);if (browser_name == "Netscape" && browser_version >= 3.0) { roll = 'true';}else if (browser_name == "Microsoft Internet Explorer" && browser_version >= 4.0) { roll = 'true'; }else { roll = 'false'; }if (roll == 'true'){	var imglist = new Array (		"images/menu_01.gif",		"images/menu-over_01.gif",		"images/menu_02.gif",		"images/menu-over_02.gif",		"images/menu_03.gif",		"images/menu-over_03.gif",			"images/menu_04.gif",		"images/menu-over_04.gif",		"images/menu_05.gif",		"images/menu-over_05.gif"		);	var imgs = new Array();		var count;	if (document.images)	for (count=0; count<imglist.length; count++)	{imgs[count]=new Image(); imgs[count].src=imglist[count];}}
