/*
	'' -------------------------------------------------------------
	'' eSRO Basket Site
    '' Version: 3.3.5.1
    '' Sep 15, 2008
	'' Powered by: TopTix LTD.
	'' -------------------------------------------------------------
	'' addActiveX.js - add Flash activeX object by script
	'' -------------------------------------------------------------
*/

function ActivateFlash(file, width, height, cssClass)//, protocol)
{
	var protocol=window.location.protocol;
	document.write('<OBJECT classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"')
    document.write('codebase="' + protocol + '//download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0"')
    if (width != "")
		document.write(' WIDTH="' + width + '" ')
	if (height !="")
		document.write(' HEIGHT="' + height + '" ')
	if (cssClass != "")
		document.write(' class="' + cssClass + '" ')
	
    document.write(' id="objFlash" name="objFlash" ALIGN="">')
    document.write('<PARAM NAME=movie VALUE=" ' + file + '">')
    document.write('<PARAM NAME=quality VALUE=high> <PARAM NAME=bgcolor VALUE=#FFFFFF> ')
    document.write('<EMBED WIDTH="' + width + '" HEIGHT="' + height + '" src="' + file + '" quality=high bgcolor=#FFFFFF  NAME="RFH_Booking_engine" ALIGN=""')
    document.write(' TYPE="application/x-shockwave-flash" PLUGINSPAGE="http://www.macromedia.com/go/getflashplayer">')
    document.write('</EMBED>')
    document.write('</OBJECT>')
}

