// JavaScript Documentfunction MM_openBrWindow(theURL,winName,features) { //v2.0  window.open(theURL,winName,features);}function printpage() {window.print();  }//tests for specified version of flash//plugin==0 -they don't have latest, plugin==1 -they do have latest.plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;if ( plugin ) {	//put version to test for...	plugin = parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 8;}else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0    && (navigator.userAgent.indexOf("Windows 95")>=0 || navigator.userAgent.indexOf("Windows 98")>=0 || navigator.userAgent.indexOf("Windows NT")>=0)) {	document.write('<SCRIPT LANGUAGE=VBScript> \n');	document.write('on error resume next \n');	//put version to test for...	document.write('plugin = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash.6")))\n');	document.write('</SCRIPT\>\n');}//end flash detectfunction closeMain() {self.opener=null;self.close();return false;}// (C) 2001 www.CodeLifter.com// http://www.codelifter.com// Free for all users, but leave in this headervar howLong = 1000;t = null;function closeMe(){t = setTimeout("self.close()",howLong);}