function writeFlash(hotelCode, name, PrintString, ABOUTFLASH) {
	var MM_contentVersion = 6;
	var MM_FlashCanPlay;
	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 MM_PluginVersion = words[i];
		}
		MM_FlashCanPlay = MM_PluginVersion >= MM_contentVersion;
	} else if (navigator.userAgent && navigator.userAgent.indexOf("MSIE")>=0
		&& (navigator.appVersion.indexOf("Win") != -1)) {
		try {
			MM_FlashCanPlay = (typeof(new ActiveXObject("ShockwaveFlash.ShockwaveFlash." + MM_contentVersion)) == 'object');
		} catch(err) {
			MM_FlashCanPlay = false;
		}
	}
	if (MM_FlashCanPlay) {
		//IF THE USER HAS FLASH, SHOW THE FILE HERE:
		if (navigator.userAgent.indexOf("Opera") > -1)
			document.write("<img src='/images/locations/flash.jpg' width='532' height='245' border='0'>");
		else if (hotelCode == 'RZAUCK') {
			document.write("<object style='position:relative;float:left;margin-left:-1px' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='510' height='287' title='Welcome to " +name +"' VIEWASTEXT><param name='movie' value='/images/swf/RZAUCK_Location/Rydges_Auckland.swf'><param name='quality' value='high'><param name='wmode' value='transparent'><embed src='/images/swf/RZAUCK_Location/Rydges_Auckland.swf' wmode='transparent' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='510' height='287'></embed></object><BR>");
		} else {
			document.write("<object style='position:relative;float:left;margin-left:-1px' classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,19,0' width='532' height='245' title='Welcome to " +name +"' VIEWASTEXT><param name='movie' value='/images/find-a-hotel/flash/index.swf'><param name='quality' value='high'><param name='wmode' value='transparent'><param name='flashvars' value='imgList=" +PrintString +"'><embed src='/images/find-a-hotel/flash/index.swf' wmode='transparent' quality='high' pluginspage='http://www.macromedia.com/go/getflashplayer' type='application/x-shockwave-flash' width='532' height='245' flashvars='imgList=" +PrintString +"'></embed></object><BR>");
		}
	} else {
		document.write("<img src='" +ABOUTFLASH +"' width='532' height='245' border='0'>");
	}
}