<!--

var css = "<link rel='stylesheet' href='/mys15.css' type='text/css'>";
var copyright = "<span class='copyright'><div align='center'> Copyright © 2003-2005 Monaco Yacht Show - Webmaster </div></span>"; 

function lib_bwcheck(){ //Browsercheck (needed)
	this.ver=navigator.appVersion
	this.agent=navigator.userAgent
	this.dom=document.getElementById?1:0
	this.opera5=(navigator.userAgent.indexOf("Opera")>-1 && document.getElementById)?1:0
	this.ie5=(this.ver.indexOf("MSIE 5")>-1 && this.dom && !this.opera5)?1:0; 
	this.ie6=(this.ver.indexOf("MSIE 6")>-1 && this.dom && !this.opera5)?1:0;
	this.ie4=(document.all && !this.dom && !this.opera5)?1:0;
	this.ie=this.ie4||this.ie5||this.ie6
	this.mac=this.agent.indexOf("Mac")>-1
	this.ns6=(this.dom && parseInt(this.ver) >= 5) ?1:0; 
	this.ns4=(document.layers && !this.dom)?1:0;
	this.bw=(this.ie6 || this.ie5 || this.ie4 || this.ns4 || this.ns6 || this.opera5)
	return this
}
var bw=new lib_bwcheck()

/*****************

You set the width and height of the divs inside the style tag, you only have to
change the divScrollTextCont, Remember to set the clip the same as the width and height.
You can remove the divUp and divDown layers if you want. 
This script should also work if you make the divScrollTextCont position:relative.
Then you should be able to place this inside a table or something. Just remember
that Netscape crash very easily with relative positioned divs and tables.

Updated with a fix for error if moving over layer before pageload.

****************/


//If you want it to move faster you can set this lower, it's the timeout:
var speed = 30

//Sets variables to keep track of what's happening
var loop, timer

//Object constructor
function makeObj(obj,nest){
    nest=(!nest) ? "":'document.'+nest+'.'
	this.el=bw.dom?document.getElementById(obj):bw.ie4?document.all[obj]:bw.ns4?eval(nest+'document.'+obj):0;
  	this.css=bw.dom?document.getElementById(obj).style:bw.ie4?document.all[obj].style:bw.ns4?eval(nest+'document.'+obj):0;
	this.scrollHeight=bw.ns4?this.css.document.height:this.el.offsetHeight
	this.clipHeight=bw.ns4?this.css.clip.height:this.el.offsetHeight
	this.up=goUp;this.down=goDown;
	this.moveIt=moveIt; this.x=0; this.y=0;
    this.obj = obj + "Object"
    eval(this.obj + "=this")
    return this
}

// A unit of measure that will be added when setting the position of a layer.
var px = bw.ns4||window.opera?"":"px";

function moveIt(x,y){
	this.x = x
	this.y = y
	this.css.left = this.x+px
	this.css.top = this.y+px
}

//Makes the object go up
function goDown(move){
	if (this.y>-this.scrollHeight+oCont.clipHeight){
		this.moveIt(0,this.y-move)
			if (loop) setTimeout(this.obj+".down("+move+")",speed)
	}
}
//Makes the object go down
function goUp(move){
	if (this.y<0){
		this.moveIt(0,this.y-move)
		if (loop) setTimeout(this.obj+".up("+move+")",speed)
	}
}

//Calls the scrolling functions. Also checks whether the page is loaded or not.
function scroll(speed){
	if (scrolltextLoaded){
		loop = true;
		if (speed>0) oScroll.down(speed)
		else oScroll.up(speed)
	}
}


//Calls the scrolling functions. Also checks whether the page is loaded or not.
function scrollRemMYS(speed){
	if (scrolltextLoadedRemMYS){
		loop = true;
		if (speed>0) oScrollRemMYS.down(speed)
		else oScrollRemMYS.up(speed)
	}
}
//Calls the scrolling functions. Also checks whether the page is loaded or not.
function scrollBlocNote(speed){
	if (scrolltextLoadedBlocNote){
		loop = true;
		if (speed>0) oScrollBlocNote.down(speed)
		else oScrollBlocNote.up(speed)
	}
}
//Calls the scrolling functions. Also checks whether the page is loaded or not.
function scrollEch(speed){
	if (scrolltextLoadedEch){
		loop = true;
		if (speed>0) oScrollEch.down(speed)
		else oScrollEch.up(speed)
	}
}
//Stops the scrolling (called on mouseout)
function noScroll(){
	loop = false
	if (timer) clearTimeout(timer)
}

//Stops the scrolling (called on mouseout)
function noScrollRemMYS(){
	loop = false
	if (timer) clearTimeout(timer)
}
//Stops the scrolling (called on mouseout)
function noScrollBlocNote(){
	loop = false
	if (timer) clearTimeout(timer)
}
//Stops the scrolling (called on mouseout)
function noScrollEch(){
	loop = false
	if (timer) clearTimeout(timer)
}
//Makes the object
var scrolltextLoaded = false
function scrolltextInit(){
	oCont = new makeObj('divScrollTextCont')
	oScroll = new makeObj('divText','divScrollTextCont')
	oScroll.moveIt(0,0)
	oCont.css.visibility = "visible"
	scrolltextLoaded = true
}
var scrolltextLoadedEch = false
function scrolltextInitEch(){
	oCont = new makeObj('divScrollTextContEch')
	oScrollEch = new makeObj('divTextEch','divScrollTextContEch')
	oScrollEch.moveIt(0,0)
	oCont.css.visibility = "visible"
	scrolltextLoadedEch = true
}

var scrolltextLoadedRemMYS = false
function scrolltextInitRemMYS(){
	oCont = new makeObj('divScrollTextContRemMYS')
	oScrollRemMYS = new makeObj('divTextRemMYS','divScrollTextContRemMYS')
	oScrollRemMYS.moveIt(0,0)
	oCont.css.visibility = "visible"
	scrolltextLoadedRemMYS = true
}
var scrolltextLoadedBlocNote = false
function scrolltextInitBlocNote(){
	oCont = new makeObj('divScrollTextContBlocNote')
	oScrollBlocNote = new makeObj('divTextBlocNote','divScrollTextContBlocNote')
	oScrollBlocNote.moveIt(0,0)
	oCont.css.visibility = "visible"
	scrolltextLoadedBlocNote = true
}
//Call the init on page load if the browser is ok...
//if (bw.bw) onload = scrolltextInit

/***************
Multiple Scripts
If you have two or more scripts that use the onload event, probably only one will run (the last one).
Here is a solution for starting multiple scripts onload:
   1. Delete or comment out all the onload assignments, onload=initScroll and things like that.
   2. Put the onload assignments in the body tag like in this example, note that they must have braces ().
   Example: <body onload="initScroll(); initTooltips(); initMenu();">
**************/


function MM_swapImage() { //v3.0
  var i,j=0,x,a=MM_swapImage.arguments; document.MM_sr=new Array; for(i=0;i<(a.length-2);i+=3)
   if ((x=MM_findObj(a[i]))!=null){document.MM_sr[j++]=x; if(!x.oSrc) x.oSrc=x.src; x.src=a[i+2];}
}
function MM_swapImgRestore() { //v3.0
  var i,x,a=document.MM_sr; for(i=0;a&&i<a.length&&(x=a[i])&&x.oSrc;i++) x.src=x.oSrc;
}

function MM_preloadImages() { //v3.0
 var d=document; if(d.images){ if(!d.MM_p) d.MM_p=new Array();
   var i,j=d.MM_p.length,a=MM_preloadImages.arguments; for(i=0; i<a.length; i++)
   if (a[i].indexOf("#")!=0){ d.MM_p[j]=new Image; d.MM_p[j++].src=a[i];}}
}

function MM_findObj(n, d) { //v4.0
  var p,i,x;  if(!d) d=document; if((p=n.indexOf("?"))>0&&parent.frames.length) {
    d=parent.frames[n.substring(p+1)].document; n=n.substring(0,p);}
  if(!(x=d[n])&&d.all) x=d.all[n]; for (i=0;!x&&i<d.forms.length;i++) x=d.forms[i][n];
  for(i=0;!x&&d.layers&&i<d.layers.length;i++) x=MM_findObj(n,d.layers[i].document);
  if(!x && document.getElementById) x=document.getElementById(n); return x;
}

function MM_goToURL() { //v3.0
  var i, args=MM_goToURL.arguments; document.MM_returnValue = false;
  for (i=0; i<(args.length-1); i+=2) eval(args[i]+".location='"+args[i+1]+"'");
}
//-->

<!--
function MM_reloadPage(init) {  //reloads the window if Nav4 resized
  if (init==true) with (navigator) {if ((appName=="Netscape")&&(parseInt(appVersion)==4)) {
    document.MM_pgW=innerWidth; document.MM_pgH=innerHeight; onresize=MM_reloadPage; }}
  else if (innerWidth!=document.MM_pgW || innerHeight!=document.MM_pgH) location.reload();
}
MM_reloadPage(true);

function MM_jumpMenu(targ,selObj,restore){ //v3.0
  eval(targ+".location='"+selObj.options[selObj.selectedIndex].value+"'");
  if (restore) selObj.selectedIndex=0;
}

//Affichage aléatoire da la vignette

var theImages = new Array() 

theImages[0] = 'hp/random/verticale_v2_1.jpg'
theImages[1] = 'hp/random/verticale_v2_2.jpg'
theImages[2] = 'hp/random/verticale_v2_3.jpg'
theImages[3] = 'hp/random/verticale_v2_4.jpg'
theImages[4] = 'hp/random/verticale_v2_5.jpg'
theImages[5] = 'hp/random/verticale_v2_6.jpg'
theImages[6] = 'hp/random/verticale_v2_7.jpg'
theImages[6] = 'hp/random/verticale_v2_8.jpg'


var j = 0
var p = theImages.length;

var preBuffer = new Array()
for (i = 0; i < p; i++){
   preBuffer[i] = new Image()
   preBuffer[i].src = theImages[i]
}

var whichImage = Math.round(Math.random()*(p-1));
function showImage(){
document.write('<img src="'+theImages[whichImage]+'" width="90" height="183" border="0">');
}

//Affichage aléatoire du bandeau

var theImages2 = new Array() 

theImages2[0] = 'hp/random/horizontale_v2_1.jpg'
theImages2[1] = 'hp/random/horizontale_v2_2.jpg'
theImages2[2] = 'hp/random/horizontale_v2_3.jpg'
theImages2[3] = 'hp/random/horizontale_v2_4.jpg'
theImages2[4] = 'hp/random/horizontale_v2_5.jpg'
theImages2[5] = 'hp/random/horizontale_v2_6.jpg'

var j2 = 0
var p2 = theImages2.length;

var preBuffer2 = new Array()
for (i2 = 0; i2 < p2; i2++){
   preBuffer2[i] = new Image()
   preBuffer2[i].src = theImages2[i]
}

var whichImage2 = Math.round(Math.random()*(p2-1));
function showImage2(){
document.write('<img src="'+theImages2[whichImage2]+'" width="360" height="195" border="0">');
}

//Affichage aléatoire pub

var theImages3 = new Array() 
theImages3[0] = '<a href="http://prof.estat.com/cgi-bin/ft/226026155436?class=bannermys16&page=camper&type=11&g=226026155436&estat_url=http%3A%2F%2Fwww.cnconnect.com%3F" target="_blank"><img src="/mys15_pub/camper.gif" width="134" height="391" border="0" alt="www.cnconnect.com" title="www.cnconnect.com"></a>'
theImages3[1] = '<a href="http://prof.estat.com/cgi-bin/ft/226026155436?class=bannermys16&page=nigelburgess&type=11&g=226026155436&estat_url=http%3A%2F%2Fwww.nigelburgess.com%3F" target="_blank"><img src="/mys15_pub/bandeau_nigel_burgess.gif" width="123" height="382" border="0" alt="www.nigelburgess.com" title="www.nigelburgess.com"></a>'
theImages3[2] = '<a href="http://prof.estat.com/cgi-bin/ft/226026155436?class=bannermys16&page=heesen&type=11&g=226026155436&estat_url=http%3A%2F%2Fwww.heesenyachts.nl%2FHEESENPORTAL%2Fpage.aspx%3FtabID%3D149" target="_blank"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/bandeau_heesen.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/bandeau_heesen.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object></a>'
theImages3[3] = '<a href="http://prof.estat.com/cgi-bin/ft/226026155436?class=bannermys16&page=dassault&type=11&g=226026155436&estat_url=http%3A%2F%2Fwww.dassaultfalcon.com%3F" target="_blank"><img src="/mys15_pub/bandeau_dassault.gif" border="0" alt="www.dassaultfalcon.com" title="www.dassaultfalcon.com"></a>'
theImages3[4] = '<a href="http://prof.estat.com/cgi-bin/ft/226026155436?class=bannermys16&page=AMELS&type=11&g=226026155436&estat_url=http%3A%2F%2Fwww.amels-holland.com%2Fmonaco_boats%3F" target="_blank"><object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/bandeau_amels.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/bandeau_amels.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object></a>'

var j3 = 0
var p3 = theImages3.length;
var preBuffer3 = new Array()
for (i3 = 0; i3 < p3; i3++){
   preBuffer3[i] = new Image()
   preBuffer3[i].src = theImages3[i]
}
var whichImage3 = Math.round(Math.random()*(p3-1));
function showImage3(){
document.write(''+theImages3[whichImage3]+'');
}

//Affichage aléatoire pub nouvelle formule

var theImages5 = new Array() 
theImages5[0] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_01.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_01.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[1] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_02.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_02.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[2] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_03.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_03.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[3] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_04.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_04.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[4] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_05.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_05.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[5] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_06.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_06.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[6] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_07.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_07.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'
theImages5[7] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="123" height="382"><param name="movie" value="/mys15_pub/banner_08.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/banner_08.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="123" height="382" wmode="transparent"></embed></object>'

var j5 = 0
var p5 = theImages5.length;
var preBuffer5 = new Array()
for (i5 = 0; i5 < p5; i5++){
   preBuffer5[i] = new Image()
   preBuffer5[i].src = theImages5[i]
}
var whichImage5 = Math.round(Math.random()*(p5-1));
function showImage5(){
document.write(''+theImages5[whichImage5]+'');
}

//Affichage aléatoire pub flash et image

var theImages4 = new Array() 
theImages4[0] = '<a href="http://www.cnconnect.com" target="_blank"><img src="/mys15_pub/camper.gif" width="134" height="391" border="0" alt="www.cnconnect.com"></a>'
theImages4[1] = '<a href="http://http://www.nigelburgess.com" target="_blank"><img src="/mys15_pub/bandeau_nigel_burgess.gif" border="0" alt="www.nigelburgess.com"></a>'
theImages4[2] = '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0" width="626" height="391"><param name="movie" value="/mys15_pub/bandeau_heesen.swf"><param name="quality" value="high"><param name="wmode" value="transparent"><embed src="/mys15_pub/bandeau_heesen.swf" quality="high" pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash" width="626" height="391" wmode="transparent"></embed></object>'

var j4 = 0
var p4 = theImages4.length;
var preBuffer4 = new Array()
for (i4 = 0; i4 < p4; i4++){
   preBuffer4[i] = new Image()
   preBuffer4[i].src = theImages4[i]
}
var whichImage4 = Math.round(Math.random()*(p4-1));
function showImage4(){
document.write(''+theImages4[whichImage4]+'');
}

function MM_showHideLayers() { //v6.0
  var i,p,v,obj,args=MM_showHideLayers.arguments;
  for (i=0; i<(args.length-2); i+=3) if ((obj=MM_findObj(args[i]))!=null) { v=args[i+2];
    if (obj.style) { obj=obj.style; v=(v=='show')?'visible':(v=='hide')?'hidden':v; }
    obj.visibility=v; }
}

function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function printlayer(lname) {

var txt = document.getElementById(lname).innerHTML;
neu = window.open('about:blank','print','');
neu.document.write(css,"<BR>",txt,"<BR>",copyright);
neu.print();
}

//gestion numéro de commande de badge en param d'url
var params = location.search.substring(1).split("&");
var variables = new Array();
for (i in params) {
   var segments_var = params[i].split("=");
   variables[segments_var[0]] = unescape(segments_var[1]);
}

function MM_popupMsg(msg) { //v1.0
  alert(msg);
}

function MM_callJS(jsStr) { //v2.0
  return eval(jsStr)
}

//affichage des listes déroulantes des sous activités si elles existent
function getobj(id){
if(document.getElementById)
 return(document.getElementById(id));
else if(document.all)
 return(document.all[id]);
else if(document.layers)
 return(document.layers[id]);
}

function affiche(nom){
if(obj = getobj(nom)){
 if(obj.style.display == 'none')
  obj.style.display = '';
 else
  obj.style.display = '';
	}
}

function nonaffiche(nom){
if(obj = getobj(nom)){
 if(obj.style.display == ''){
  obj.style.display = 'none';
  }
}
}

/**
 * SWFObject v1.4: Flash Player detection and embed - http://blog.deconcept.com/swfobject/
 *
 * SWFObject is (c) 2006 Geoff Stearns and is released under the MIT License:
 * http://www.opensource.org/licenses/mit-license.php
 *
 * **SWFObject is the SWF embed script formarly known as FlashObject. The name was changed for
 *   legal reasons.
 */
if(typeof deconcept=="undefined"){var deconcept=new Object();}
if(typeof deconcept.util=="undefined"){deconcept.util=new Object();}
if(typeof deconcept.SWFObjectUtil=="undefined"){deconcept.SWFObjectUtil=new Object();}
deconcept.SWFObject=function(_1,id,w,h,_5,c,_7,_8,_9,_a,_b){
if(!document.createElement||!document.getElementById){return;}
this.DETECT_KEY=_b?_b:"detectflash";
this.skipDetect=deconcept.util.getRequestParameter(this.DETECT_KEY);
this.params=new Object();
this.variables=new Object();
this.attributes=new Array();
if(_1){this.setAttribute("swf",_1);}
if(id){this.setAttribute("id",id);}
if(w){this.setAttribute("width",w);}
if(h){this.setAttribute("height",h);}
if(_5){this.setAttribute("version",new deconcept.PlayerVersion(_5.toString().split(".")));}
this.installedVer=deconcept.SWFObjectUtil.getPlayerVersion(this.getAttribute("version"),_7);
if(c){this.addParam("bgcolor",c);}
var q=_8?_8:"high";
this.addParam("quality",q);
this.setAttribute("useExpressInstall",_7);
this.setAttribute("doExpressInstall",false);
var _d=(_9)?_9:window.location;
this.setAttribute("xiRedirectUrl",_d);
this.setAttribute("redirectUrl","");
if(_a){this.setAttribute("redirectUrl",_a);}};
deconcept.SWFObject.prototype={setAttribute:function(_e,_f){
this.attributes[_e]=_f;
},getAttribute:function(_10){
return this.attributes[_10];
},addParam:function(_11,_12){
this.params[_11]=_12;
},getParams:function(){
return this.params;
},addVariable:function(_13,_14){
this.variables[_13]=_14;
},getVariable:function(_15){
return this.variables[_15];
},getVariables:function(){
return this.variables;
},getVariablePairs:function(){
var _16=new Array();
var key;
var _18=this.getVariables();
for(key in _18){
_16.push(key+"="+_18[key]);}
return _16;
},getSWFHTML:function(){
var _19="";
if(navigator.plugins&&navigator.mimeTypes&&navigator.mimeTypes.length){
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","PlugIn");}
_19="<embed type=\"application/x-shockwave-flash\" src=\""+this.getAttribute("swf")+"\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\"";
_19+=" id=\""+this.getAttribute("id")+"\" name=\""+this.getAttribute("id")+"\" ";
var _1a=this.getParams();
for(var key in _1a){_19+=[key]+"=\""+_1a[key]+"\" ";}
var _1c=this.getVariablePairs().join("&");
if(_1c.length>0){_19+="flashvars=\""+_1c+"\"";}
_19+="/>";
}else{
if(this.getAttribute("doExpressInstall")){this.addVariable("MMplayerType","ActiveX");}
_19="<object id=\""+this.getAttribute("id")+"\" classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" width=\""+this.getAttribute("width")+"\" height=\""+this.getAttribute("height")+"\">";
_19+="<param name=\"movie\" value=\""+this.getAttribute("swf")+"\" />";
var _1d=this.getParams();
for(var key in _1d){_19+="<param name=\""+key+"\" value=\""+_1d[key]+"\" />";}
var _1f=this.getVariablePairs().join("&");
if(_1f.length>0){_19+="<param name=\"flashvars\" value=\""+_1f+"\" />";}
_19+="</object>";}
return _19;
},write:function(_20){
if(this.getAttribute("useExpressInstall")){
var _21=new deconcept.PlayerVersion([6,0,65]);
if(this.installedVer.versionIsValid(_21)&&!this.installedVer.versionIsValid(this.getAttribute("version"))){
this.setAttribute("doExpressInstall",true);
this.addVariable("MMredirectURL",escape(this.getAttribute("xiRedirectUrl")));
document.title=document.title.slice(0,47)+" - Flash Player Installation";
this.addVariable("MMdoctitle",document.title);}}
if(this.skipDetect||this.getAttribute("doExpressInstall")||this.installedVer.versionIsValid(this.getAttribute("version"))){
var n=(typeof _20=="string")?document.getElementById(_20):_20;
n.innerHTML=this.getSWFHTML();
return true;
}else{
if(this.getAttribute("redirectUrl")!=""){document.location.replace(this.getAttribute("redirectUrl"));}}
return false;}};
deconcept.SWFObjectUtil.getPlayerVersion=function(_23,_24){
var _25=new deconcept.PlayerVersion([0,0,0]);
if(navigator.plugins&&navigator.mimeTypes.length){
var x=navigator.plugins["Shockwave Flash"];
if(x&&x.description){_25=new deconcept.PlayerVersion(x.description.replace(/([a-z]|[A-Z]|\s)+/,"").replace(/(\s+r|\s+b[0-9]+)/,".").split("."));}
}else{try{
var axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash");
for(var i=3;axo!=null;i++){
axo=new ActiveXObject("ShockwaveFlash.ShockwaveFlash."+i);
_25=new deconcept.PlayerVersion([i,0,0]);}}
catch(e){}
if(_23&&_25.major>_23.major){return _25;}
if(!_23||((_23.minor!=0||_23.rev!=0)&&_25.major==_23.major)||_25.major!=6||_24){
try{_25=new deconcept.PlayerVersion(axo.GetVariable("$version").split(" ")[1].split(","));}
catch(e){}}}
return _25;};
deconcept.PlayerVersion=function(_29){
this.major=parseInt(_29[0])!=null?parseInt(_29[0]):0;
this.minor=parseInt(_29[1])||0;
this.rev=parseInt(_29[2])||0;};
deconcept.PlayerVersion.prototype.versionIsValid=function(fv){
if(this.major<fv.major){return false;}
if(this.major>fv.major){return true;}
if(this.minor<fv.minor){return false;}
if(this.minor>fv.minor){return true;}
if(this.rev<fv.rev){return false;}return true;};
deconcept.util={getRequestParameter:function(_2b){
var q=document.location.search||document.location.hash;
if(q){
var _2d=q.indexOf(_2b+"=");
var _2e=(q.indexOf("&",_2d)>-1)?q.indexOf("&",_2d):q.length;
if(q.length>1&&_2d>-1){
return q.substring(q.indexOf("=",_2d)+1,_2e);
}}return "";}};
if(Array.prototype.push==null){
Array.prototype.push=function(_2f){
this[this.length]=_2f;
return this.length;};}
var getQueryParamValue=deconcept.util.getRequestParameter;
var FlashObject=deconcept.SWFObject; // for backwards compatibility
var SWFObject=deconcept.SWFObject;


//-->
