<!--
var InternetExplorer = navigator.appName.indexOf("Microsoft") != -1;

function banner_click_DoFSCommand(command, args)
{
	if (command == "banner_click")
	{
		location.href= super_finalURL;
	}
	else if (command == "banner_click2")
	{
		location.href= super_finalURL2;
	}
	else if (command == "banner_click3")
	{
		location.href= super_finalURL3;
	}
	else if (command == "banner_click4")
	{
		location.href= super_finalURL4;
	}
	else if (command == "banner_click5")
	{
		location.href= super_finalURL5;
	}
}

//if IE and Mac
if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && navigator.userAgent.indexOf("Mac")>=0) 
{
//display the swf
//alert ("IE-Mac");
document.write('<a href="'+ super_finalURL +'"><IMG SRC="'+ super_noFlashImg +'" WIDTH=468 HEIGHT=60 BORDER=0></a>');
}
//if Net and Net6
else if (navigator.userAgent && navigator.userAgent.indexOf("Netscape")>=0 && navigator.userAgent.indexOf("Netscape6")<0) 
{
//display the swf
//alert ("NetS old nav"+navigator.userAgent.indexOf("Netscape6"));
document.write('<a href="'+ super_finalURL +'"><IMG SRC="'+ super_noFlashImg +'" WIDTH=468 HEIGHT=60 BORDER=0></a>');
}
//if Unix and X11
else if (navigator.userAgent && navigator.userAgent.indexOf("Unix")>=0 && navigator.userAgent.indexOf("X11")>=0) 
{
//display the swf
//alert ("x11");
document.write('<a href="'+ super_finalURL +'"><IMG SRC="'+ super_noFlashImg +'" WIDTH=468 HEIGHT=60 BORDER=0></a>');
}
//all others
else 
{ 
   //If MSIE and Windows
   if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 && navigator.userAgent.indexOf("Windows")>=0) {
      //alert ("IE-Win");
   	document.write('<SCRIPT LANGUAGE=VBScript\> \n');
   	document.write('on error resume next \n');
   	document.write('Sub banner_click_FSCommand(ByVal command, ByVal args)\n');
   	document.write('  call banner_click_DoFSCommand(command, args)\n');
   	document.write('end sub\n');
   	document.write('</SCRIPT\> \n');
   }
   //all others
   document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://active.macromedia.com/flash2/cabs/swflash.cab#version=3,0,0,0" ID=banner_click WIDTH=468 HEIGHT=60><PARAM NAME=movie VALUE="'+ super_flashFileURL +'"><PARAM NAME=quality VALUE=high><PARAM NAME=loop VALUE=true>');
   var ShockMode = 0;
   
   //If fash exists and enabled
   if (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"] && navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin) 
   {
	   if (navigator.plugins && navigator.plugins["Shockwave Flash"]) 
	      ShockMode = 1;
   }

   //If Flash OK
   if ( ShockMode ) 
   {
   	document.write('<EMBED SRC="'+ super_flashFileURL +'"');
   	document.write(' NAME=banner_click swLiveConnect=TRUE WIDTH=468 HEIGHT=60');
   	document.write(' QUALITY=high LOOP=true');
   	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash">');
   	document.write('</EMBED>');
   }
   //Flash NOT EXIST
   else 
   	if (!(navigator.appName && navigator.appName.indexOf("Netscape")>=0 && navigator.appVersion.indexOf("2.")>=0)) 
   	{
   		document.write('<a href="'+ super_finalURL +'"><IMG SRC="'+ super_noFlashImg +'" WIDTH=468 HEIGHT=60 BORDER=0></a>');
      }
   
   document.write('</OBJECT>');
}
-->