<!-- Begin
function SlickBoard (vHotel,vSection,vAltImage,nWidth,nHeight,vLang) {
var vhtml ;
var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
//if(flashinstalled>1 && hasRightVersion)
if(flashinstalled>1)
{
AC_FL_RunContent(
			'codebase', 'http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=9,0,45,0',
			'width', nWidth,
			'height', nHeight,
			'scale', 'noscale',
			'salign', 'TL',
			'bgcolor', '#ffffff',
			'wmode', 'opaque',
			'movie', '/flash/slickboard/slickboard',
			'src', '/flash/slickboard/slickboard',
			'FlashVars', 'xml_source=%2F'+vLang+'%2F'+vHotel+'%2f'+vSection+'.xml', 
			'id', 'my_board',
			'name', 'my_board',
			'menu', 'true',
			'allowFullScreen', 'flase',
			'allowScriptAccess','sameDomain',
			'quality', 'high',
			'align', 'middle',
			'pluginspage', 'http://www.macromedia.com/go/getflashplayer',
			'play', 'true',
			'devicefont', 'false'
			); 
}			
else
{
  vhtml='<img class="hotelpic" width="'+nWidth+' height="'+nHeight+'" src="'+vAltImage+'">';
  vhtml='<img width="'+nWidth+'" height="'+nHeight+'" src="'+vAltImage+'">';
  document.write(vhtml) ;  
}

}
//  End -->