       var flashshowing = false;
         var alternateContent='';
         if (!useRedirect) {  
         if(hasRightVersion) { 
         flashshowing = true;
	 
	var newvars="&";
	// Create variable is_input to see if there is a ? in the url
	var is_input = document.URL.indexOf('?');
	
	// Check the position of the ? in the url
	if (is_input != -1)
	{ 
		// Create variable from ? in the url to the end of the string
		addr_str = document.URL.substring(is_input+1, document.URL.length);
		
		// Loop through the url and write out values found
		// or a line break to seperate values by the &
		for (count = 0; count < addr_str.length; count++) 
		{
			if (addr_str.charAt(count) == "&")
			// Write a line break for each & found
			{newvars+= "&"}else 
			// Write the part of the url 
			{newvars+= addr_str.charAt(count)}
		}
	}
	//newvars;
         var oeTags = '<EMBED SRC="flash/mouselistener.swf?'+newvars+'" WIDTH="100%" HEIGHT="100%"'
         + 'PLAY="true"'
         + 'LOOP="false"'
         + 'QUALITY="best"'
	 + 'BGCOLOR="#ffffff"'
         + 'MENU="true"'
         + 'TYPE="application/x-shockwave-flash"'
         + 'PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">'
         + '</EMBED>';

         document.write(oeTags);  // embed the flash movie
         } else { // flash is too old or we can't detect the plugin
         var alternateContent = ''
         flashshowing = true;
         document.write(alternateContent); // insert non-flash content
         } 
         }
         if(flashshowing  == false){
         var alternateContent = ''  
         document.write(alternate); // insert non-flash content
	}
        <!--  } -->
         //-->