// JavaScript Document

function invokeFlashMovie(){
		
	 var oeTags = "<OBJECT CLASSID=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\""
    + "CODEBASE=\"https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0\""
    + "WIDTH=\"100%\" HEIGHT=\"100%\""
//    + "SCALE=\"noborder\"" 
    + "id=\"engine\">"
    + "<PARAM NAME=movie VALUE=\"../movie/swf/" + generic_movieName + ".swf\">"
    + "<PARAM NAME=quality VALUE=best>"
    + "<PARAM NAME=bgcolor "
    + "VALUE=\"" + generic_bgColor + "\">"
    + "<PARAM NAME=flashvars VALUE=\"id=" + hotelCode + "" + lastMinute + "&hotelName=" + generic_name + "&hideLang=" + hideLang + "&lang=" + lang + "&gate=" + fg + "&style=" + generic_style + "&siteLink=" + generic_siteLink + "&currDate=" + currentDateTime + "&clientIp=" + ipAddress + "&mcStats=" + userAgent + "&packageString=" + select_package + "&offerString=" + select_offer + "&roomString=" + select_room + "&writeLog=" + write_log + "&jumpUsername=" + userName + "&county=" + generic_county + "&jumpPassword=" + password + "" + strref + "" + strsrc + "" + strmode + "" + strsearch + "" + packageInfo + "" + offerInfo + "" + piggyString + "" + autoMonth + "" + autoDate + "" + strAutoNumRooms + "" + strAutoNumAdults + "" + stAutoNumChildren + "" + strAutoNumInfants + "" + strRoomIds + "\">"
    + "<EMBED SRC=\"../movie/swf/" + generic_movieName + ".swf\""
    + "FlashVars=\"id=" + hotelCode + "" + lastMinute + "&hotelName=" + generic_name + "&hideLang=" + hideLang + "&lang=" + lang + "&gate=" + fg + "&style=" + generic_style + "&siteLink=" + generic_siteLink + "&currDate=" + currentDateTime + "&clientIp=" + ipAddress + "&mcStats=" + userAgent + "&packageString=" + select_package + "&offerString=" + select_offer + "&roomString=" + select_room + "&writeLog=" + write_log + "&county=" + generic_county + "&jumpUsername=" + userName + "&jumpPassword=" + password + "" + strref + "" + strsrc + "" + strmode + "" + strsearch + "" + packageInfo + "" + offerInfo + "" + piggyString + "" + autoMonth + "" + autoDate + "" + strAutoNumRooms + "" + strAutoNumAdults + "" + stAutoNumChildren + "" + strAutoNumInfants + "" + strRoomIds + "\""
    + "QUALITY=\"best\""
    + "bgcolor=\"" + generic_bgColor + "\""
    + "WIDTH=\"100%\" HEIGHT=\"100%\""
    + "NAME=\"engine\""
//    + "SCALE=\"noborder\" "
    + "ALIGN=\"\""
    + "TYPE=\"application/x-shockwave-flash\""
    + "PLUGINSPAGE=\"https://www.macromedia.com/go/getflashplayer\">"
    + "</EMBED>"
    + "</OBJECT>";
 
    document.write(oeTags);   // embed the flash movie
	
}

