﻿// JScript File
var flashinstalled = 0;
var flashversion = 0;
var MSDetect = false;
var MM_FlashCanPlay = false;

function openWindow(link)
{    
    open(link); 
}

function displayFlash (flashLink, width, height)
{
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	document.write('  codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0" ');
	document.write(' ID="flashBanner" WIDTH="' + width + '" HEIGHT="' + height + '" ALIGN="">');
	document.write(' <PARAM NAME=movie VALUE="' + flashLink + '"> <PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor>  '); 
	document.write(' <EMBED src="' + flashLink + '" quality=high ');
	document.write(' swLiveConnect=FALSE WIDTH="' + width + '" HEIGHT="' + height + '" NAME="flashBanner" ALIGN=""');
	document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">');
	document.write(' </EMBED>');
	document.write(' </OBJECT>');
}

function flashUnavailable (link, width, height)
{
	document.write('<img src="' + link + '" WIDTH="' + width + '" HEIGHT="' + height + '" /> ');
}

