<!--//Hide code from old browsers
//this code inserts the "archive1.swf" flash movie into the page
var vBrowserType=navigator.appName; 			// tells if Netscape or Explorer

if (vBrowserType == "Microsoft Internet Explorer"){ // this is the MSIE browser sniffer, so use <object> to insert movie
	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=4,0,0,0" width="202" height="173">');
	document.write('<param name="movie" value="images/spl_logo.swf"><param name="quality" value="autohigh"><param name="loop" value="false"><param name="menu" value="false">');
              document.write('<img src="images/spl_logo.gif" width="202" height="173"  alt="Logo"\/>'); //if can't use activeX object, displays image instead
	document.write('<\/object>');
} 
else{
	if (vBrowserType == "Netscape"){ // this is the Netscape browser sniffer, so use <embed> tags
		var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
    		if ( plugin && parseInt(plugin.description.substring(plugin.description.indexOf(".")-1)) >= 4 ){	// Check for Flash version 4 or greater in Netscape
			document.write('<embed src="images/spl_logo.swf" loop="false" menu="false" quality="autohigh" swLiveConnect="false" width="202" height="173"');
			document.write('type="application/x-shockwave-flash" pluginspace="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash"></embed>');
    		}
    		else if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)){
			// Netscape 2 will display the IMG tag below so don't write an extra one
			document.write('<img src="images/spl_logo.gif" width="202" height="173" border="0" alt="Logo" \/>');
    		}
        
        } 
	else{ //neither netscape or ie, so just display image
        	document.write('<img src="images/spl_logo.gif" width="202" height="173" border="0" alt="Logo" \/>');
	}
}
//-->
