﻿var isNS6 = 0;
var isNS4 = 0;
var isIE = 0;
var isFF = 0;
var isChrome = 0;
var isSafari = 0;
var isOpera = 0;
var docObj, styleObj, noStyle;

var isQuickClick = false;

var vers = parseInt(navigator.appVersion);
var brow = (navigator.appName);
var browvers = brow + vers;

var displaySingleColorOffTimer = null;

if (brow == "Netscape") 
{
if (vers >= 5) 
{
 isNS6 = 1;
 docObj = "document.getElementById('";
 styleObj = "').style";
 noStyle = "')";
}
else 
{
 isNS4 = 1;
 docObj = "document.";
 styleObj = "";
 noStyle = "";
}
};

//this is in case they do a major upgrade on a minor update
if (navigator.userAgent.toLowerCase().indexOf("firefox") != -1) 
{
vers = ((navigator.userAgent.toLowerCase().split("firefox/")[1]).split(" ")[0]).split('.');
isFF = 1;

}
else if (navigator.userAgent.toLowerCase().indexOf("chrome") != -1) 
{
vers = ((navigator.userAgent.toLowerCase().split("chrome/")[1]).split(" ")[0]).split('.');
isChrome = 1;

}
else if (navigator.userAgent.toLowerCase().indexOf("safari") != -1) 
{
vers = ((navigator.userAgent.toLowerCase().split("version/")[1]).split(" ")[0]).split('.');
isSafari = 1;

}

if (navigator.userAgent.indexOf("Mozilla/3.0") != -1) {
isNS4 = 1;
docObj = "document.";
styleObj = "";
noStyle = "";
};

if (brow == "Microsoft Internet Explorer") {
vers = (navigator.appVersion.toLowerCase().split("msie"))[1].split(";")[0];
isIE = 1;
docObj = "document.all.";
styleObj = ".style";
noStyle = "";
};

if (brow == "Opera") {
vers = ((navigator.userAgent.toLowerCase().split("opera/")[1]).split(" ")[0]) * 1;
docObj = "document.all.";
styleObj = ".style";
noStyle = "";
isOpera = 1;
};
function visOn(currElem) {
domVON = eval(docObj + currElem + styleObj);
domVON.visibility = "visible";
};

function elemColapse(currElem) {
domECOP = eval(docObj + currElem + styleObj);
domECOP.display = "none";
};

function elemUnColapse(currElem) {
domEUC = eval(docObj + currElem + styleObj);
domEUC.display = "";
};

function visOff(currElem) {
domVOFF = eval(docObj + currElem + styleObj);
domVOFF.visibility = "hidden";
};

function rollImg(imgField, imgPath) {
domRI = eval(docObj + imgField + noStyle);
domRI.src = imgPath;
};

function elemChgWidth(currElem, width, isPercent) {
domECW = eval(docObj + currElem + styleObj);
if (isPercent)
 domECW.width = width + "%";
else
 domECW.width = width + "px";
createCookie('widthsize', width, 7);
};

function elemCurs(currElem, curs) {
domEC = eval(docObj + currElem + styleObj);
domEC.cursor = curs;
};

var slideCT = null;
var isDown = false;

function slideElem(elemParent, elemChild, isNotTimer) {
if (isNotTimer) {
 isDown = !isDown;
 if (isDown)
 visOn(elemParent);
}


domSE = eval(docObj + elemChild + styleObj);
ParentHeight = getElemHight(elemParent);
num = domSE.top.split("px");

if (isDown) {
 move = Math.floor(num[0] * .2);
 move = num[0] - (move == 0 ? 1 : move);
 if (move < 0)
 move = 0;
}
else {
 move = Math.floor((ParentHeight - num[0]) * .2);
 move = (num[0] * 1) + (move == 0 ? 1 : move);
 if (move > ParentHeight)
 move = ParentHeight;
}

domSE.top = move + "px";
if (slideCT != null) {
 clearTimeout(slideCT);
 slideCT = null;
}
if (domSE.top != "0px" && domSE.top != (ParentHeight + "px"))
 slideCT = setTimeout("slideElem('" + elemParent + "','" + elemChild + "',false)", 50);

};


function getElemHight(currElem) {
domHS = eval(docObj + currElem + styleObj);
domH = eval(docObj + currElem + noStyle);

if (domH.offsetHeight)
 return domH.offsetHeight;
else if (domH.pixelHeight)
 return domH.pixelHeight;
else
 return domHS.pixelHeight;
};

function getElemWidth(currElem) {
domWS = eval(docObj + currElem + styleObj);
domW = eval(docObj + currElem + noStyle);


if (domW.offsetWidth)
 return domW.offsetWidth;
else if (domW.pixelWidth)
 return domW.pixelWidth;
else
 return domWS.pixelWidth;
};

function getElemScrollWidth(currElem) {
domSW = eval(docObj + currElem + noStyle);

if (domSW.scrollWidth)
 return domSW.scrollWidth;
}

function loadFont(currElem) {
if (readCookie('fontsize') != "")
 fontUpdatePercent(currElem, readCookie('fontsize'), 2);
};

function loadWidth(currElem) {
if (readCookie('widthsize') != "")
 elemChgWidth(currElem, readCookie('widthsize'), true);
};

function fontUpdatePercent(currElem, SizeChange, ChangeType) {
domFU = eval(docObj + currElem + styleObj);
if (domFU.fontSize == "")
 domFU.fontSize = "76%";
if (ChangeType == 1) {
 newSize = parseInt(domFU.fontSize) - (SizeChange);
if (newSize < 0)
 newSize = 0;
}
else if (ChangeType == 2) {
 newSize = SizeChange;
}
else if (ChangeType == 3) {
 newSize = parseInt(dom.fontSize) + (SizeChange);
 if (newSize > 100)
 newSize = 100;
}
domFU.fontSize = newSize + "%";
createCookie('fontsize', newSize, 7);

};

var CSSct = 2;
var CSSsleep;
function loadCSS(currElem) {
if (readCookie('styleSheet') != "" && readCookie('styleSheet') != null)
 chgCSS(currElem, readCookie('styleSheet'));
};

function chgCSS(currElem, LinkToSheet) {
domCss = eval(docObj + currElem + CSSct + noStyle);
domCss.href = LinkToSheet;
createCookie('styleSheet', LinkToSheet, 7);
CSSsleep = setTimeout("switchCSSStyle('" + currElem + "')", 650);
};

function switchCSSStyle(currElem) {
clearTimeout(CSSsleep);
CSSsleep = null;

dom1 = eval(docObj + currElem + CSSct + noStyle);

if (CSSct == 2)
 CSSct = 1;
else
 CSSct = 2;

dom2 = eval(docObj + currElem + CSSct + noStyle);
dom1.disabled = false;
dom2.disabled = true;
};

function createCookie(name, value, days) {
if (days) {
 var date = new Date();
 date.setTime(date.getTime() + (days * 24 * 60 * 60 * 1000));
 var expires = "; expires=" + date.toGMTString();
}
else
 expires = "";
document.cookie = name + "=" + value + expires + "; path=/";
};

function readCookie(name) {
var nameEQ = name + "=";
var ca = document.cookie.split(';');
for (var i = 0; i < ca.length; i++) {
 var c = ca[i];
 while (c.charAt(0) == ' ') c = c.substring(1, c.length);
 if (c.indexOf(nameEQ) == 0)
 return (c.substring(nameEQ.length, c.length) != "null" ? c.substring(nameEQ.length, c.length) : null);
}
return null;
};

function setMouseOver()
{
domQuickMenuNoStyle.onmouseover = function() { clearSlideDelay(); slideQuickMenuElem(domQuickMenuNoStyle.id, domQuickMenuNoStyle.id + "menuContent", true); if (isIE && vers < 8) { domQuickMenuMainStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj); domQuickMenuMainStyle.backgroundColor = "black"; } };
domQuickMenuNoStyle.onmouseout = function() { slideQuickMenuElemDelay(domQuickMenuNoStyle.id, domQuickMenuNoStyle.id + "menuContent", false) };

domQuickMenuContentNoStyle.onmouseover = function() { clearSlideDelay(); if (isIE && vers < 8) { domQuickMenuMainStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj); domQuickMenuMainStyle.backgroundColor = "black"; } };
domQuickMenuContentNoStyle.onmouseout = function() { slideQuickMenuElemDelay(domQuickMenuNoStyle.id, domQuickMenuNoStyle.id + "menuContent", false); if (isIE && vers < 8) { domQuickMenuMainStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj); domQuickMenuMainStyle.backgroundColor = "black"; } };
};
function clearMouseOver()
{
domQuickMenuNoStyle.onmouseover = function() {  };
domQuickMenuNoStyle.onmouseout = function() {  };

domQuickMenuContentNoStyle.onmouseover = function() {  };
domQuickMenuContentNoStyle.onmouseout = function() {  };
};
function setQuickMenu() {
   
try {
 domAds = eval(docObj + 'ctl00_divMainContentRight' + styleObj);
 domContent = eval(docObj + 'ctl00_divMainContentLeft' + styleObj);
 var tmpConRightWidth=(getElemWidth('divMainContentMainBody') - 330);
 if (domAds != null) {
 domContent.width = tmpConRightWidth + "px";

 createCookie('MainContentRight', tmpConRightWidth, 30); 
 }
}
catch (err) {
 var tmpConRightWidth = (getElemWidth('divMainContentMainBody') - 330);
 createCookie('MainContentRight', tmpConRightWidth, 30);
}

try {
 var tmpMainMovies = Math.floor((tmpConRightWidth + 32) * .99 - 30);
 tmpMainMovies = Math.floor(tmpMainMovies / 204) * 204;
 domMainMovies = eval(docObj + 'ctl00_conMain_divMainMovies' + styleObj);
 domMainMovies.width = tmpMainMovies + "px";
}
catch (err) {
 
}
if (isFF) {
 if (getElemWidth("DivMainFull") > getElemWidth("DivMain")) {
 if (getElemWidth(domQuickMenuNoStyle.id + "menuContent") > getElemWidth(domQuickMenuNoStyle.id))
  domQuickMenuStyle.left = (-1 * getElemWidth(domQuickMenuNoStyle.id + "menuContent")) + "px";
 else
  domQuickMenuStyle.left = (-1 * getElemWidth(domQuickMenuNoStyle.id)) + "px";
 domQuickMenuStyle.right = "";
 }
 else {
 domQuickMenuStyle.left = "";
 domQuickMenuStyle.right = (getElemWidth("DivMain") - getElemWidth("DivMainFull") + getElemWidth(domQuickMenuNoStyle.id + "menuContent")) + "px";
 }

 domQuickMenuParentStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj)
 if (getElemWidth("DivMainFull") < (getElemWidth("DivMain") - getElemWidth(domQuickMenuNoStyle.id + "menuContent"))) {
 domQuickMenuParentStyle.position = "absolute";
 domQuickMenuStyle.right = getElemWidth(domQuickMenuNoStyle.id + "menuContent") + "px";
 }
 else
 domQuickMenuParentStyle.position = "fixed";
}
else {

 if (isIE && vers < 8) {
 tmpDifQuick = ((getElemWidth("DivMainFull") - getElemWidth("DivMain")) / 2);
 if (tmpDifQuick < 0)
  tmpDifQuick = 0;

 domQuickMenuMainStyle = eval(docObj + domQuickMenuNoStyle.id + "Main" + styleObj);
 domQuickMenuMainStyle.position = "absolute";
 domQuickMenuMainStyle.right = (tmpDifQuick + getElemWidth("quickMenuIDParent")) + "px";

 domQuickMenuParentStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj)
 if (getElemWidth("DivMainFull") < (getElemWidth("DivMain") - getElemWidth(domQuickMenuNoStyle.id + "menuContent"))) {
  domQuickMenuParentStyle.position = "absolute";
  domQuickMenuMainStyle.right = (-1 * getElemWidth("quickMenuIDParent")) + "px";
 }
 else
  domQuickMenuParentStyle.position = "fixed";

 }
 else {
 if (getElemWidth("DivMainFull") > getElemWidth("DivMain"))
  domQuickMenuStyle.left = (getElemWidth(domQuickMenuNoStyle.id + "Main") - getElemWidth(domQuickMenuNoStyle.id)) + "px";
 else
  domQuickMenuStyle.left = (getElemWidth(domQuickMenuNoStyle.id + "Main") - getElemWidth(domQuickMenuNoStyle.id) - (getElemWidth("DivMain") - getElemWidth("DivMainFull"))) + "px";

 }
}

};
var slideDurCT = null;
function clearSlideDelay() {
if (slideDurCT != null) {
 clearTimeout(slideDurCT);
 slideDurCT = null;
}
};
function slideQuickMenuElemDelay(elemMenuParent, elemMenuChild, QMEDirection) {


if (slideDurCT != null) {
 clearTimeout(slideDurCT);
 slideDurCT = null;
}
if (QMEtimer != null) {
 clearTimeout(QMEtimer);
 QMEtimer = null;
}
slideDurCT = setTimeout("slideQuickMenuElem('" + elemMenuParent + "','" + elemMenuChild + "'," + QMEDirection + ");setQuickMenu();", 500);

};

var QMEtimer = null;
function slideQuickMenuElem(elemMenuParent, elemMenuChild, QMEDirection) {
if (isIE && vers < 8) { domQuickMenuMainStyle = eval(docObj + domQuickMenuNoStyle.id + "Parent" + styleObj); domQuickMenuMainStyle.backgroundColor = ""; }
if (QMEtimer != null) {
 clearTimeout(QMEtimer);
 QMEtimer = null;
}
if (slideDurCT != null) {
 clearTimeout(slideDurCT);
 slideDurCT = null;
}

var stopTimer = false;
domQME = eval(docObj + elemMenuParent + styleObj);
elemHeightParent = getElemHight(elemMenuParent);
elemHeightChild = getElemHight(elemMenuChild);
numQME = parseInt(domQME.top);

elemHightDiff = (elemHeightChild);

if (QMEDirection) {
 move = Math.abs(Math.floor(numQME * .2));
 move = numQME + (move = 0 ? 1 : move);

 if (move >= 0) {
 move = 0;
 stopTimer = true;
 }
}
else {
 move = Math.floor(elemHightDiff * .2);
 move = numQME - (move);

 if (move < (elemHightDiff * -1)) {
 move = (elemHightDiff * -1);
 stopTimer = true;
 }
}

domQME.top = move + "px";
if (stopTimer)
 return;
else
 QMEtimer = setTimeout("slideQuickMenuElem('" + elemMenuParent + "','" + elemMenuChild + "'," + QMEDirection + ")", 50);

};

function fontUpdate(bodyElem, SizeChange) {
domBFU = eval(docObj + bodyElem + styleObj);
domBFU.fontSize = SizeChange;
newsDomStyle.height = (1.7 * parseInt(SizeChange)) + "px";
domQuickMenuStyle.visibility = "hidden";
setQuickMenu();
domQuickMenuStyle.visibility = "visible";
domQuickMenuStyle.minWidth = (parseInt(SizeChange) * 10) + "px";
createCookie('UpdateFont', SizeChange, 30);
updateColorSize(SizeChange);
if (varPanSpacerID != "")
 setSpacer(varPanSpacerID, varDivSpacerID);


};
function updateColorSize(SizeChange) {
for (ct = 0; ct < 7; ct++) {
 domCSO = eval(docObj + "imgOption" + (ct + 1) + noStyle);
 domCSO.width = (parseInt(SizeChange));
 domCSO.height = (parseInt(SizeChange));
}

};
function setFocus(elemFocus) {
domSFoc = eval(docObj + elemFocus + noStyle);
domSFoc.focus();
};

function widthUpdate(bodyElem, widthChange) {
domBWD = eval(docObj + bodyElem + styleObj);
domBWD.width = widthChange;
domQuickMenuStyle.visibility = "hidden";
setQuickMenu();
domQuickMenuStyle.visibility = "visible";
createCookie('widthChange', widthChange, 30);


};

var tmpHex = "";
function colorUpdate(bodyElem, hexVal) {

domCUP = eval(docObj + bodyElem + styleObj);

domCUP.color = hexVal;


if (isIE && vers < 8) {
 var a = document.getElementsByTagName("a");
 var textarea = document.getElementsByTagName("textarea");
 for (ct = 0; ct < a.length; ct++) {
 a[ct].style.color = hexVal;
 }
 for (ct = 0; ct < textarea.length; ct++) {
 textarea[ct].style.color = hexVal;
 }
 tmpHex = hexVal;
}

createCookie('colorUpdate', hexVal, 30);

try {
 domDivColorUpdate = eval(docObj + 'DivBorderColorChange' + styleObj);
 if (domDivColorUpdate != null)
 domDivColorUpdate.border = "solid 1px " + hexVal;
}
catch (err)
{ }
};

var varPanSpacerID = "";
var varDivSpacerID = "";
function setSpacer(varPan, varDivSpacer) {
domDS = eval(docObj + varDivSpacer + styleObj);
domDS.height = (getElemHight(varPan) + 10) + "px";
varPanSpacerID = varPan;
varDivSpacerID = varDivSpacer;
};

function getWindowWidth() {
var myWidth = 0;
if (typeof (window.innerWidth) == 'number') {
 //Non-IE
 myWidth = window.innerWidth;
} else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
 //IE 6+ in 'standards compliant mode'
 myWidth = document.documentElement.clientWidth;
} else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
 //IE 4 compatible
 myWidth = document.body.clientWidth;
}
return myWidth;

};
function getWindowHeight() {

var myHeight = 0;
if (typeof (window.innerWidth) == 'number') {
 myHeight = window.innerHeight;
} else if (document.documentElement && (document.documentElement.clientWidth || document.documentElement.clientHeight)) {
 myHeight = document.documentElement.clientHeight;
} else if (document.body && (document.body.clientWidth || document.body.clientHeight)) {
 myHeight = document.body.clientHeight;
}

return myHeight;

};

/**
*
*  URL encode / decode
*  http://www.webtoolkit.info/
*
**/

var Url = {

// public method for url encoding
encode: function(string) {
 return escape(this._utf8_encode(string));
},

// public method for url decoding
decode: function(string) {
 return this._utf8_decode(unescape(string));
},

// private method for UTF-8 encoding
_utf8_encode: function(string) {
 string = string.replace(/\r\n/g, "\n");
 var utftext = "";

 for (var n = 0; n < string.length; n++) {

 var c = string.charCodeAt(n);

 if (c < 128) {
  utftext += String.fromCharCode(c);
 }
 else if ((c > 127) && (c < 2048)) {
  utftext += String.fromCharCode((c >> 6) | 192);
  utftext += String.fromCharCode((c & 63) | 128);
 }
 else {
  utftext += String.fromCharCode((c >> 12) | 224);
  utftext += String.fromCharCode(((c >> 6) & 63) | 128);
  utftext += String.fromCharCode((c & 63) | 128);
 }

 }

 return utftext;
},

// private method for UTF-8 decoding
_utf8_decode: function(utftext) {
 var string = "";
 var i = 0;
 var c = c1 = c2 = 0;

 while (i < utftext.length) {

 c = utftext.charCodeAt(i);

 if (c < 128) {
  string += String.fromCharCode(c);
  i++;
 }
 else if ((c > 191) && (c < 224)) {
  c2 = utftext.charCodeAt(i + 1);
  string += String.fromCharCode(((c & 31) << 6) | (c2 & 63));
  i += 2;
 }
 else {
  c2 = utftext.charCodeAt(i + 1);
  c3 = utftext.charCodeAt(i + 2);
  string += String.fromCharCode(((c & 15) << 12) | ((c2 & 63) << 6) | (c3 & 63));
  i += 3;
 }

 }

 return string;
}

};

function conceptMenuOn()
{
	if(conMenuCT!=null)
		clearTimeout(conMenuCT);
	conMenuCT=null;	
	elemUnColapse('conceptMenu');
};

var conMenuCT=null;
function conceptMenuHide()
{
	if(conMenuCT!=null)
		clearTimeout(conMenuCT);
	conMenuCT=null;	
	conMenuCT=setTimeout(function(){ elemColapse('conceptMenu');},500);
}

function conceptMenuClear()
{
	if(conMenuCT!=null)
		clearTimeout(conMenuCT);
	conMenuCT=null;	
}

function callBackMenuOn()
{
	setCallBackMenu();
	if(conBackMenuCT!=null)
		clearTimeout(conBackMenuCT);
	conBackMenuCT=null;	
	visOn('callBackMenu');
};

function setCallBackMenu()
{
	domCMS = eval(docObj + 'Table_01' + noStyle);
	domCM2 = eval(docObj + 'callBackMenu' + noStyle);
	domCMSS = eval(docObj + 'callBackMenu' + styleObj);
	
	domCMSS.left=(domCMS.offsetLeft+978-(getElemWidth('callBackMenu')*2)+65)+"px";
	if(domCMSS.top=="")
		domCMSS.top=(domCM2.offsetTop+20)+"px";
};

window.onresize = setCallBackMenu;
document.onresize = setCallBackMenu;
function callBackMenuToggle()
{
	domCMS = eval(docObj + 'Table_01' + noStyle);
	domCM2 = eval(docObj + 'callBackMenu' + noStyle);
	domCMSS = eval(docObj + 'callBackMenu' + styleObj);
	
	if(domCMSS.visibility=='hidden')
	{
		callBackMenuOn();
	}
	else
		visOff('callBackMenu');
};

var conBackMenuCT=null;
function callBackMenuHide()
{
	if(conBackMenuCT!=null)
		clearTimeout(conBackMenuCT);
	conBackMenuCT=null;	
	conBackMenuCT=setTimeout(function(){ visOff('callBackMenu');},500);
};

function callBackMenuClear()
{
	if(conBackMenuCT!=null)
		clearTimeout(conBackMenuCT);
	conBackMenuCT=null;	
};


var persInfo=[];
	persInfo[0]=[];
	persInfo[0][0]="<p><strong><em><u>Isabelle LAMBERT</u></em></strong><strong><em><u>&nbsp;: Managing Director</u></em></strong> </p><p>A travaillé durant 10 ans dans le secteur de  l’hôtellerie puis s’est ensuite tournée vers le tourisme d’affaires pendant  environ 5 ans travaillant principalement pour le marché américain, pour  finalement passer ces 7 dernières années dans un autre milieu qu’est celui du  show Business, responsable de l’organisation de concerts dans toute la France  mais aussi la Suisse et la Belgique pour des artistes de milieux très  différents tels que&nbsp;: André   RIEU, Blue Man Group, Star Academy (la tournée) , Amalia, L5  ou encore dans le cinéma-théâtre avec Marciel …</p><p>&nbsp;</p>";
	persInfo[0][1]="<p><strong><em><u>Jean Jacques BERTRAND&nbsp;: </u></em></strong></p>  <p>Avocat à Paris, Arbitre au Tribunal Arbitral  du Sport à Lausanne (Suisse) ,&nbsp; Foreign  Legal Consultant au Barreau d’Arizona, Spécialiste reconnu du Droit du Sport,  il est familier de l’Arizona depuis plus de 15 ans.</p>  <p>Il a fait découvrir cette région à de nombreux  amis qui le sollicitent pour y revenir en conjuguant&nbsp; détente et activité professionnelle.</p>  <p>Sa rencontre avec ses partenaires, véritables  professionnels du tourisme d’affaires et de la communication, lui donne  l’occasion de faire profiter les entreprises ou simplement les amis des  richesses qui naissent de tout séjour en Arizona.</p><p>&nbsp;</p>";
	persInfo[0][2]="<p><strong><em><u>Jean Claude DEROUET&nbsp;: </u></em></strong></p>  <p>A fait sa carrière dans une très grande société internationale de  communication&nbsp;où il était plus spécialement chargé d’entretenir des  relations privilégiées avec des sociétés &nbsp;nationales et internationales.<br> A toujours eu le sens de l’organisation qu’il a mis en œuvre à  l’occasion de manifestations sportives nationales et&nbsp; internationales entre de grands groupes de  presse.<br> Ses séjours professionnels et touristiques en Arizona l’ont  définitivement conquis à l’idée de faire partager ses expériences au plus grand  nombre. <br>La qualité de vie locale, le climat propice à la pratique du golf,  l’ensoleillement quotidien et une chaleur constante et agréable l’ont incité à conjuguer ces attraits avec le temps de la réflexion et de  l’action.</p>";
	
	persInfo[1]=[];
	persInfo[1][0]="<p><strong><em><u>Isabelle LAMBERT</u></em></strong><strong><em><u>&nbsp;: Managing Director</u></em></strong> </p><p>Spent 10 years working in the hotel branch and then turned to business tourism for about 5 years working mainly for the American market and finally has been spending these last 7 years in a different environment which is Show Business; Responsible for the organization of concerts all over France and Switzerland and Belgium as well for artists from quite different backgrounds such as: Andre RIEU, Blue Man Group, Star Academy (on tour), Amalia, L5 or else from theater with Marciel</p><p>&nbsp;</p>";
	persInfo[1][1]="<p><strong><em><u>Jean Jacques BERTRAND&nbsp;: </u></em></strong></p>  <p>Lawyer in Paris, arbitrator at the arbitral Sport Court in Lausanne (Switzerland), Foreign Legal Consultant at the Bar of Arizona, an acknowledged specialist in Sport Law; he has been familiar with Arizona for more than 15 years.<br/>He introduced this area to quite a few friends of his who appeal to him to come back while combining relaxation and professional activities.<br/>His meeting with his partners, true professionals in business, tourism and communication give him an opportunity for firms or just friends to thrive on the resources which spring from any stay in Arizona.<br/></p><p>&nbsp;</p>";
	
	persInfo[1][2]="<p><strong><em><u>Jean Claude DEROUET&nbsp;: </u></em></strong></p>  <p>He made his career in a very big international communication firm in which he was mainly responsible for being in constant and privileged contact with national and international firms.<br/>He has always had a sense of organization, he has implemented on national and international sporting events among big press groups.<br/>His professional and tourist trips to Arizona have definitely converted him to the idea of sharing his own experiences with the majority.<br/>The quality of local life, the climate favorable to golfing, and the daily sunshine with a constant, quite pleasant temperature prompted him to combine such attractive conditions with the time for reflection and action.</p>";

function loadAboutText(lang,person,divID)
{
		
domQuickMenuNoStyle = eval(docObj + divID + noStyle);
	
	domQuickMenuNoStyle.innerHTML=persInfo[lang][person];
};

function ClearAboutText(divID)
{
		
domQuickMenuNoStyle = eval(docObj + divID + noStyle);
	
	domQuickMenuNoStyle.innerHTML="";
};