<!-- 

// flash detection
//returns is_flash if flash is present and at least the target_version


var target_version = 8;

var plugin = (navigator.mimeTypes && navigator.mimeTypes["application/x-shockwave-flash"]) ? navigator.mimeTypes["application/x-shockwave-flash"].enabledPlugin : 0;
if ( plugin ) {
		var words = navigator.plugins["Shockwave Flash"].description.split(" ");
	    for (var i = 0; i < words.length; ++i)
	    {
		if (isNaN(parseInt(words[i])))
		continue;
		var user_version = words[i]; 
	    }
	var is_flash = user_version >= target_version;
}
else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0 
   && (navigator.appVersion.indexOf("Win") != -1)) {
	document.write('<SCR' + 'IPT LANGUAGE=VBScript\> \n'); //FS hide this from IE4.5 Mac by splitting the tag
	document.write('on error resume next \n');
	document.write('is_flash = ( IsObject(CreateObject("ShockwaveFlash.ShockwaveFlash." & target_version)))\n');
	document.write('</SCR' + 'IPT\> \n');
}

//document.write function for flash embed
function writeFlash(swfname, horz, vert){
	document.write('<OBJECT CLASSID="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" WIDTH='+horz+' HEIGHT='+vert+' CODEBASE="http://fpdownload.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=8,0,0,0" ID="main" style="position:absolute;left:50%; margin-left:-475px;"><PARAM NAME="MOVIE" VALUE='+swfname+'><PARAM NAME="PLAY" VALUE="true"><PARAM NAME="QUALITY" VALUE="best"><PARAM NAME="LOOP" VALUE="true"><PARAM NAME="MENU" VALUE="false"><param name="movie" value="index.swf">');

	document.write('<EMBED SRC='+swfname+' NAME="main" WIDTH='+horz+' HEIGHT='+vert+' PLAY="true" QUALITY="best" LOOP="true" SCALE="showall" align="middle" MENU="false" SWLIVECONNECT="true" PLUGINSPACE="http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash" TYPE="application/x-shockwave-flash"></EMBED></OBJECT>');
}


function Open(url,horz,vert,scrolls) {
	if (!scrolls)
	{scrolls = "1";}
	window.open(url, 'detailwindow','toolbar=0,location=0,directories=0,status=1,menubar=0,scrollbars='+scrolls+',resizable=0,width='+horz+',height='+vert);

}

function nospam(name,domain) {
    	window.location = "mailto:" + name + "@" + domain;
}

// -->