﻿// JScript File

var hasRightVersion = DetectFlashVer(requiredMajorVersion, requiredMinorVersion, requiredRevision);
if(hasRightVersion) {
    var oeTags = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"'
    + 'width="100%" height="400"'
    + 'codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab">'
    + '<param name="movie" value="RoomNavigatorV1.1.swf" /><param name="menu" value="false" /><param name="quality" value="best" /><param name="bgcolor" value="#ffffff" />'
    + '<embed src="RoomNavigatorV1.1.swf" menu="false" quality="best" bgcolor="#ffffff" '
    + 'width="100%" height="400" name="RoomNavigator" align="middle"'
    + 'play="true"'
    + 'loop="false"'
    + 'quality="high"'
    + 'allowScriptAccess="sameDomain"'
    + 'type="application/x-shockwave-flash"'
    + 'pluginspage="http://www.macromedia.com/go/getflashplayer">'
    + '<\/embed>'
    + '<\/object>';
    document.write(oeTags);
}else{ 
    document.write('There has been an error detecting your Macromedia Flash Player version.  <a href="javascript:switchVersion();">You can view the text version by clicking here.</a>');
}
