// <!--var isAll = ( document.all ) ? true : false ;var isW3C = ( document.getElementById && !isAll ) ? true : false ;var isNN4 = (document.layers) ? true : false ;var isPrint = ( window.print ) ? 1 : 0 ;var isMac = ( navigator.userAgent.indexOf("Mac") != -1 ) ; var whiteSpace = " \t\n\r"; // whitespace characters// this is set in the Form Header :: var strCurDB = "/"+@WebDbName+"/"; var strCurURL = unescape( top.location.search );var strCurServer = top.location.hostname ;var strCurProtocol = top.location.protocol ;var isOpen = false ;var curHeight = 0 ;var curWidth = 0 ;var curLeftPos = "" ;var curElt ;var curIntervalID ;var curPx = ( isW3C ) ? "px" : ""// This is to forbid the use of Back in some specific case...var curReferrer = "";var curPage = "";function setReferrer() {	curCookie = document.cookie;	var cookieName = "prevPage=";	var i = curCookie.indexOf( cookieName );	if ( i != -1 ) {		if ( curCookie.indexOf(";", i+1) == -1 ) {			curReferrer = curCookie.substring( i+cookieName.length, curCookie.length )		} else {			curReferrer = curCookie.substring( i+cookieName.length, curCookie.indexOf(";", i+1) )		}	}	curPage = top.location.pathname;	curPage = curPage.toLowerCase();	curPage = curPage.substring( curPage.lastIndexOf( strCurDB.toLowerCase() )+strCurDB.length, curPage.length );	document.cookie = "prevPage=" + escape( curPage ) + "; path=/;";}setReferrer();var dragSwitch = 0 ;function makeHttpRequest( url, CBfunc, isXml, CBpar ) { // last is optional	var httpRequest = false;	if ( window.XMLHttpRequest ) { // Not ie...		httpRequest = new XMLHttpRequest();		if ( httpRequest.overrideMimeType ) {			httpRequest.overrideMimeType('text/xml');		}	} else if (window.ActiveXObject) { // IE		try {			httpRequest = new ActiveXObject("Msxml2.XMLHTTP");		} catch (e) {			try {				httpRequest = new ActiveXObject("Microsoft.XMLHTTP");			} catch (e) {}		}	}	if ( !httpRequest ) { return false; }	if ( CBfunc!="" ) { // Async, use a CallBack function		httpRequest.onreadystatechange = function() {			if (httpRequest.readyState == 4) {				if (httpRequest.status == 200) {					if (isXml) {						eval(CBfunc + '(httpRequest.responseXML, CBpar)');					} else {						eval(CBfunc + '(httpRequest.responseText, CBpar)');					}				}			}		}		try {			httpRequest.open('GET', url, true);			httpRequest.send(null);		} catch(e) {			alert("Error in makeHttpRequest!! " + e.name + " >> " + e.message);		} 	} else { // Direct, no Call Back function. Return the result.		try {			httpRequest.open('GET', url, false); //isAsync must be forced to no here			httpRequest.send(null);		} catch(e) {			alert("Error in makeHttpRequest!! " + e.name + " >> " + e.message);		} 		if (httpRequest.readyState == 4) {			if (httpRequest.status == 200) {				if (isXml) {					return httpRequest.responseXML;				} else {					return httpRequest.responseText;				}			}		}		return false;	}}function checkEnterKeyPress( e ) {	var evt = ( e ) ? e : ( ( event ) ? event : null ) ;	if ( isAll ) { if ( evt.keyCode == 13 ) { evt.cancelBubble = true; return true ; } }	if ( isW3C ) { if ( evt.which == 13 ) { evt.cancelBubble = true; return true ; } }	return false ;}function getValueInURL( txtToParse ) {	// Extract a value from location.search beetween "txtToParse=" and "$"	var strRight;	var strLeft;	txtToParse = txtToParse + "=" ;	if ( strCurURL.indexOf( txtToParse ) != -1 ) {		strRight = strCurURL.substring( ( strCurURL.indexOf( txtToParse ) + txtToParse.length ), strCurURL.length) ;	} else {		strRight = "";	}	strLeft = strRight.substring( 0, strRight.indexOf("$") );	if ( strLeft == "" ) { strLeft = strRight.substring (0,strRight.length ); }	return strLeft;}var strCurLan = "en";// var strCurLan = getValueInURL( "Lang" );// if( strCurLan == "" ) { strCurLan = "en" ; }function isEmpty(s) {	return ((s == null) || (s.length == 0))}function isWhitespace(s) {	var i;	if (isEmpty(s)) return true ;	for (i = 0; i < s.length; i++) {           		var c = s.charAt(i) ;		if (whiteSpace.indexOf(c) == -1) return false ;	}	return true;}function showElt(eltID, isShow) {	var theElt = isW3C ? document.getElementById(eltID) : eval( "document.all."+eltID );	theElt.style.display = ( isShow==true ) ? "" : "none" ;}function showHideDiv(divID) {	curElt = isW3C ? document.getElementById(divID) : eval( "document.all."+divID );	curElt.style.display = ( curElt.style.display=="none" ) ? "" : "none" ;}function showHideSection( theID ) {	if( theID == "" ) { return; }	var curElt = isW3C ? document.getElementById(theID) : eval( "document.all."+theID );	curElt.className = ( curElt.className==theID+"Closed" ) ? theID+"Opened" : theID+"Closed" ;	curElt = isW3C ? document.getElementById(theID+"Details") : eval( "document.all."+theID+"Details" );	curElt.style.display = ( curElt.style.display=="none" ) ? "" : "none" ;}var cacheImagArray = new Array();function preLoadImageSet() {	for ( i=1; i<4; i++) {		cacheImagArray["set"+i] = new Image();		cacheImagArray["set"+i].src = "home-bg-set"+i+".jpg";		for ( j=1; j<=3; j++) {			cacheImagArray["set"+i+"p"+j] = new Image();			cacheImagArray["set"+i+"p"+j].src = "home-bg-set"+i+"-p"+j+".jpg";		}	}}var homeSetNb = Math.floor(Math.random()*3)+1;function switchHomeSet(newSetID) {	homeSetNb = newSetID;	for ( i=1; i<4; i++) {		var theElt = isW3C ? document.getElementById("MapSet"+i) : eval( "document.all.MapSet"+i );		theElt.style.display = ( i==newSetID ) ? "block" : "none" ;		for ( j =1; j<4; j++) {			var theElt = isW3C ? document.getElementById("Set"+j+"Link"+i) : eval( "document.all.Set"+j+"Link"+i );			theElt.className = ( i==newSetID ) ? "Active" : "Inactive" ;		}	}	return false;}function moveNextHomeSet() {	homeSetNb++;	if (homeSetNb>3) homeSetNb=1;	switchHomeSet(homeSetNb);}function switchDiv(divIntro, curShow, idxMax, idxMin) {	if( idxMin > idxMax ) { return;}	if( divIntro == "" ) { return; }	if( idxMin > curShow || idxMax < curShow ) { return; }	for( var i = idxMin; i <= idxMax; i++ ) {		var divID = divIntro+i.toString();		curElt = isW3C ? document.getElementById(divID) : eval( "document.all."+divID );		if( i == curShow ) {			if ( curElt.style.display=="none" ) { curElt.style.display=""; }		} else {			if ( curElt.style.display!="none" ) { curElt.style.display="none"; }		}	}}function hideDialogBox() {	if ( !isOpen ) { return ; }	curElt = isW3C ? document.getElementById("divDialogBox") : document.all.divDialogBox ;	curElt.style.visibility = "hidden" ;	curElt.innerHTML = "" ;	if ( !isAll ) { clearInterval( curIntervalID ) ; }	isOpen = false ;	curHeight = 0 ;	curWidth = 0 ;	curLeftPos = "" ;}function setTopDialogBox() {	if ( isOpen && curHeight != 0 ) {//		if( curLeftPos.substr(0,1) == "M" ) { return; }		if ( isAll ){			curElt = ( curElt ) ? curElt : document.all.divDialogBox ;			xVal = parseInt( ( document.body.clientHeight - ( parseInt( curHeight ) + 20 ) ) / 2 ) ;			if ( xVal < 0 ) { xVal = 0; }			curElt.style.top = document.body.scrollTop + xVal ;		} else if ( isW3C ){			curElt = ( curElt ) ? curElt : document.getElementById('divDialogBox') ;			xVal = parseInt( window.innerHeight ) / 2 - ( parseInt( curHeight ) + 20 ) / 2 ;			if ( xVal < 0 ) { xVal = 0; }			curElt.style.top = parseInt( window.pageYOffset ) + parseInt( xVal ) +"px" ;		}	}}function setLeftDialogBox() {	if ( isOpen && curWidth != 0 ) {		var stdLeftPos = "" ;		var stdMove = 0 ;		switch( curLeftPos.substr(0,1) ) {		case "S":			stdLeftPos = curLeftPos.substr(4,1) ;			stdMove = parseInt( curLeftPos.substr(5) ) ;			break;		case "L":		case "R":		case "C":			stdLeftPos = curLeftPos.substr(0,1) ;		}		if ( isAll ){			curElt = ( curElt ) ? curElt : document.all.divDialogBox ;			if ( stdLeftPos == "L" ) { curElt.style.left = document.body.scrollLeft + stdMove ; }			if ( stdLeftPos == "C" ) { curElt.style.left = document.body.scrollLeft + stdMove + ( document.body.clientWidth - ( parseInt( curWidth ) + 10 ) ) / 2 ; }			if ( stdLeftPos == "R" ) { curElt.style.left = document.body.scrollLeft + stdMove + document.body.clientWidth - ( parseInt( curWidth ) + 16 ) ; }		} else if ( isW3C ){			curElt = ( curElt ) ? curElt : document.getElementById('divDialogBox') ;			if ( stdLeftPos == "L" ) { curElt.style.left = ( parseInt( window.pageXOffset ) + parseInt( stdMove ) ) + curPx ; }			if ( stdLeftPos == "C" ) { curElt.style.left = ( parseInt( window.pageXOffset ) + parseInt( stdMove ) + ( parseInt( window.innerWidth ) - ( parseInt( curWidth ) + 16 ) ) / 2 ) + curPx ; }			if ( stdLeftPos == "R" ) { curElt.style.left = ( parseInt( window.pageXOffset ) + parseInt( stdMove ) + parseInt( window.innerWidth ) - ( parseInt( curWidth ) + 30 ) ) + curPx ; }		}		setTopDialogBox() ;	}}function setLeftOnMouse(e) {	if ( isOpen && curWidth != 0 ) {		var xcoord = 20;//		var ycoord = 20;		var truebody = (!window.opera && document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body;		if (typeof e != "undefined") {			xcoord += e.pageX;	//			ycoord += e.pageY;		} else if (typeof window.event != "undefined") {			xcoord += truebody.scrollLeft + event.clientX;//			ycoord += truebody.scrollTop + event.clientY;		}		var docwidth = document.all ? truebody.scrollLeft + truebody.clientWidth : pageXOffset + window.innerWidth - 15;//		var docheight = document.all ? Math.max(truebody.scrollHeight, truebody.clientHeight) : Math.max(document.body.offsetHeight, window.innerHeight);					if (xcoord + curWidth + 3 > docwidth) { xcoord = xcoord - curWidth - 40; }//		if (ycoord - truebody.scrollTop + curHeight > truebody.clientHeight) { ycoord = ycoord - curHeight - 20; }		if ( isAll ){			curElt = ( curElt ) ? curElt : document.all.divDialogBox ;			curElt.style.left = xcoord + "px";//			curElt.style.top = ycoord + "px";		} else if ( isW3C ){			curElt = ( curElt ) ? curElt : document.getElementById('divDialogBox') ;			curElt.style.left = xcoord + "px";//			curElt.style.top = ycoord + "px";		}	}}function showDialogBox( strContent, strTitle, isBorder ){	if ( curLeftPos == "" ) { curLeftPos = "Center" }	if ( isAll ) { isBorder=false; } ;	var iBorder = ( isBorder ) ? 20 : 0 ;	curWidth = curWidth + iBorder ;	curHeight = curHeight + iBorder ;	var iPadding = 4 + ( iBorder / 2 ) ;	var imgBorder = "WebPageSpecial/bg.png/$File/bg_trans_50.png";	var strBeginBorder = '<TABLE BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"0\" BACKGROUND=\"'+imgBorder+'\"><TR HEIGHT='+iBorder+'><TD WIDTH='+iBorder+'>';	strBeginBorder = strBeginBorder + '&nbsp;</TD><TD>&nbsp;</TD><TD WIDTH='+iBorder+'>&nbsp;</TD></TR><TR><TD>&nbsp;</TD><TD>';	var strEndBorder = '</TD></TR><TR HEIGHT='+iBorder+'><TD WIDTH='+iBorder+'>&nbsp;</TD><TD>&nbsp;</TD><TD WIDTH='+iBorder+'>&nbsp;</TD></TR></TABLE>';	var strBegin = '<TABLE WIDTH=\"'+curWidth+'\" BORDER=\"0\" CELLSPACING=\"0\" CELLPADDING=\"2\" CLASS=\"dialogBoxMain\">';	strBegin = strBegin + '<TR><TD WIDTH=\"100%\">';	strBegin = strBegin + '<TABLE BORDER=\"0\" WIDTH=\"100%\" CELLSPACING=\"0\" CELLPADDING=\"0\" HEIGHT=\"16px\">';	strBegin = strBegin + '<TR><TD ID=\"dialogBoxTitle\" STYLE=\"cursor:pointer;\" onmousedown=\"DragDrop(event)\">';	strBegin = strBegin + '<SPAN CLASS=\"dialogBoxMain\">'+strTitle+'</SPAN></TD>';	strBegin = strBegin + '<TD ALIGN=\"right\" STYLE=\"cursor:pointer;\">';	strBegin = strBegin + '<A HREF=\"\" CLASS=\"CloseButton\" onclick=\"hideDialogBox();return false;\"><IMG SRC=\"close.gif\" WIDTH=\"16px\" HEIGHT=\"14px\" BORDER=0></A>';	strBegin = strBegin + '</TD></TR></TABLE>';	strBegin = strBegin + '<TABLE BORDER=\"0\" WIDTH=\"100%\" HEIGHT=\"'+curHeight+'\" CELLSPACING=\"0\" CELLPADDING=\"'+iPadding+'\">';	strBegin = strBegin + '<TR><TD WIDTH=\"100%\" VALIGN=\"middle\" CLASS=\"dialogBoxMain\">';	if ( isBorder ) { strBegin = strBeginBorder + strBegin ; }	var strEnd = '</TD></TR></TABLE></TD></TR></TABLE>';	if ( isBorder ) { strEnd = strEnd + strEndBorder }		var strTemp = strBegin + '<DIV CLASS=\"dialogBoxTemp\">Loading file...</DIV>' + strEnd ;	var strFinal = strBegin + strContent + strEnd ;	if ( isAll ){		isOpen = true ;		curElt = document.all.divDialogBox ;		setLeftDialogBox() ;		curElt.innerHTML = strTemp ;		curElt.style.visibility = "visible" ;		curElt.innerHTML = strFinal ;	} else if ( isW3C ){		isOpen = true ;		curElt = document.getElementById("divDialogBox") ;		setLeftDialogBox() ;		curElt.innerHTML = strTemp ;		curElt.style.visibility = "visible" ;		curElt.innerHTML = strFinal ;	} else {		curHeight = 0 ;		return;	}	if ( isAll ) { window.onscroll = setTopDialogBox ; } else { curIntervalID = setInterval( "setTopDialogBox()", 200 ) ; }}function DragDropAction( e ){	var evt = ( e ) ? e : ( ( event ) ? event : null ) ;	if ( dragSwitch ) {		curElt.style.left = curx + evt.clientX - offsetx + curPx ;		curElt.style.top = cury + evt.clientY - offsety + curPx ;		return false ;	}}function DragDrop( e ){	var evt = ( e ) ? e : ( ( event ) ? event : null ) ;	curElt = isW3C ? document.getElementById("divDialogBox") : document.all.divDialogBox ;	firedobj = isW3C ? evt.target : evt.srcElement ;	var topElement = isW3C ? "html" : document.compatMode && document.compatMode!="BackCompat" ? "documentElement" : "body" ;	while ( firedobj.tagName != topElement.toUpperCase() && firedobj.id != "dialogBoxTitle" ) {		firedobj = isW3C ? firedobj.parentNode : firedobj.parentElement ;	}	if ( firedobj.id == "dialogBoxTitle" ){		offsetx = evt.clientX ;		offsety = evt.clientY ;		curx = parseInt( curElt.style.left ) ;		cury = parseInt( curElt.style.top ) ;		dragSwitch = true ;		document.onmousemove = DragDropAction ;	}	document.onmouseup = new Function("dragSwitch = false;") ;}function showOtherExt( strSel, iHeight, iWidth, strPos, strTitle ){	if ( isWhitespace(strSel) ) { return; }		curHeight = parseInt( iHeight ) ;	curWidth = parseInt( iWidth ) ;	switch ( strPos ) {		case "L":		case "R":		case "C":			curLeftPos = strPos ;	}	if ( strPos.substr(0, 1) == "S" ) { curLeftPos = strPos ; }	if ( curLeftPos == "" ) { curLeftPos = "C" ; }	var strURL = strSel ;	var iPos = 0 ;	while( true ) {		iPos = strURL.indexOf( "%Lan%" ) ;		if ( iPos == -1 ) { break ; }		strURL = strURL.substr( 0, iPos ) + strCurLan + ( ( iPos+5 >=  strURL.length ) ? "" : strURL.substr( iPos+5 ) ) ;	}	var strContent = '<IFRAME NAME=\"AnyDoc\" FRAMEBORDER="0" HEIGHT=\"'+curHeight+'\" WIDTH=\"'+curWidth+'\" SRC='+strURL+'></IFRAME>';	showDialogBox( strContent, strTitle, true ) ;}function showAnyExt( strSel, iHeight, iWidth, strPos, strTitle ){	var strCurDBHelp1 = strCurDB + "allWebPageLight/" ;	var strCurDBHelp2 = "?OpenDocument&Lang=" ;	var strURL = strCurDBHelp1 + strSel + "%Lan%" + strCurDBHelp2 + "%Lan%" ;	showOtherExt( strURL, iHeight, iWidth, strPos, strTitle ) ;}function showHelpExt( strSel, iHeight, strTitle ){	showAnyExt( strSel, iHeight, 250, "Set:L215", strTitle ) ;}function showHelpRight( strSel, iHeight, strTitle ){	showAnyExt( strSel, iHeight, 250, "R", strTitle ) ;}function showHelp( strSel, iHeight ){	showHelpExt( strSel, iHeight, "Help" ) ;}function popupImage( strSel, iWidth, iHeight, strTitle ){	if ( isWhitespace(strSel) ) { return; }		curHeight = parseInt( iHeight ) ;	curWidth = parseInt( iWidth ) ;	curLeftPos = "M" ;		var strURL = strSel ;	var strContent = '<IMG SRC=\"' + strSel + '\" WIDTH=\"' + iWidth + 'px\" HEIGHT=\"' + iHeight + 'px\" BORDER=0>';	showDialogBox( strContent, strTitle, false ) ;}function showBigImageExt( strSel, iWidth, iHeight, strTitle ){	if ( isWhitespace(strSel) ) { return; }	curHeight = parseInt( iHeight ) ;	curWidth = parseInt( iWidth ) ;	curLeftPos = "Center" ;	var strContent = '<IMG SRC=\"' + strSel + '\" WIDTH=\"' + iWidth + 'px\" HEIGHT=\"' + iHeight + 'px\" BORDER=0>';	showDialogBox( strContent, strTitle, false ) ;}function showBigImage( strSel, iWidth, iHeight ){	showBigImageExt( strSel, iWidth, iHeight, "Image" ) ;}// Get the flash data....var listFlashFile = new Array();var listFlashWidth = new Array();var listFlashHeight = new Array();function buildFlashList() {	var url = strCurDB + "allFlashDemo?ReadViewEntries";	var xml = makeHttpRequest( url, '', true, null );	if ( xml ) {		var elems = xml.getElementsByTagName("entrydata");		if ( elems.length != 0) {			for (var i = 0; i < elems.length ; i++) {				if ( elems[i].getAttribute("columnnumber") == "1" ) {					var txtElems = elems[i].getElementsByTagName("text");					if ( txtElems.length != 0 ) {						var vVal = txtElems[0].firstChild.nodeValue ;						eval( vVal );					}				}			}		}	}}function showFlashDemoExt( strSel, strTitle){	if ( isWhitespace(strSel) ) { return; }	var strCurDBFlash = strCurDB + "allFlashDemo/" ;	if ( typeof listFlashFile[strSel] == "undefined" ) {		buildFlashList();		if ( typeof listFlashFile[strSel] == "undefined" ) { return; }	}		curHeight = parseInt( listFlashHeight[strSel] ) ;	curWidth = parseInt( listFlashWidth[strSel] ) ;	curLeftPos = "Center" ;	var strURL = strCurDBFlash + strSel + '/$file/' + listFlashFile[strSel] ;	var strFlash1 = "<CENTER><OBJECT classid=\"clsid:D27CDB6E-AE6D-11cf-96B8-444553540000\" " ;	var strFlash1 = strFlash1 + "codebase=\"http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=5,0,0,0\" width=\"";	var strFlash2 = "\" height=\"";	var strFlash3 = "\"><param name=movie value=\"";	var strFlash4 = "\"><param name=quality value=high><EMBED src=\"";	var strFlash5 = "\" quality=high pluginspage=\"http://www.macromedia.com/shockwave/download/index.cgi?P1_Prod_Version=ShockwaveFlash\" "	var strFlash5 = strFlash5 + "type=\"application/x-shockwave-flash\" width=\"";	var strFlash6 = "\" height=\"";	var strFlash7 = "\"></EMBED></OBJECT></CENTER>";	var strContent = strFlash1 + listFlashWidth[strSel] + strFlash2 + listFlashHeight[strSel] + strFlash3 + strURL + strFlash4 + strURL + strFlash5 + listFlashWidth[strSel] ;	strContent = strContent + strFlash6 + listFlashHeight[strSel] + strFlash7 ;		showDialogBox( strContent, strTitle, false ) ;}function showFlashDemo( strSel ){	showFlashDemoExt( strSel, "Ytria Flash Demo");}// SearchDefValue is set directly in the SubForm Menu Top (build from a @GetProfileField)function Search_FieldOnFocus(theInput) {	if ( theInput.value==SearchDefValue ) { theInput.value=""; }	return true;}function Search_FieldOnBlur(theInput) {	if ( theInput.value=="" ) { theInput.value=SearchDefValue; }	return true;}function Search_Launch(strValue, strTarget) {	if ( isWhitespace(strValue) ) { return; }		if (strValue==SearchDefValue ) { return; }	var strValueOrig = strValue;	if( strValue.substr(0,1) == "[" && strValue.substr(strValue.length-1,1) == "]" ) {		// Special "tag", to force a Notes FT Search		strValue = strValue.substr(1,strValue.length-2);	} else {		// Force addition of AND between each words		var allTxt = strValue.split(" ");		strValue = allTxt.join(" and ");	}	if ( strTarget=="HLP" ) {		// SearchHelpPathTgt is set in the subform...		var strURL = strCurProtocol + "//" + strCurServer + SearchHelpPathTgt + "?Open&Query=" + escape( strValue ) + "&Orig=" + escape( strValueOrig ) ;		var newWindow = window.open(strURL, '_blank');		newWindow.focus();		return false;	} else {		var strURL = strCurDB + "WebPageSearch?SearchView&Query=" + escape( strValue ) ;		window.location.href = strURL ;	}	return false;}function OpenGivenPage(strValue) {	if ( isWhitespace(strValue) ) { return; }		if ( strValue=="[DEFAULT]" ) { strValue="homepage"; }	var strURL = strCurDB + "WebPageRequest/"+strValue+"en?OpenDocument";	window.location.href = strURL ;}function setSessionInfo() {	var sRef=getValueInURL("Z1");	var sUser=getValueInURL("Z2");	 if ( sRef != "" ) {		document.cookie = "sRef=" + escape( sRef ) + "; path=/;";		document.cookie = "sUser=" + escape( sUser ) + "; path=/;";	} }function resetSessionInfo() {	var date = new Date();	date.setTime(date.getTime()-7*24*60*60*1000); // Minus 1 week, to force the deletion by the browser	document.cookie = "sRef=; expires="+date.toGMTString()+"; path=/;";	document.cookie = "sUser=; expires="+date.toGMTString()+"; path=/;";}function getRefLink() {	var curURL = unescape( top.location.pathname );	if ( curURL.indexOf("/RefLink/") == -1 ) { return; }	var sCode=strCurURL.substring(1,curURL.length) ;	if ( sCode != "" ) {		var expD = new Date();		expD.setTime(expD.getTime()+(24*60*60*1000*90));		document.cookie = "sCode=" + escape(sCode.toUpperCase())+ "; expires=" + expD.toGMTString() + "; path=/;";	}} setSessionInfo();getRefLink();if ( isAll && !isPrint && !isMac ) {	document.writeln('<OBJECT ID="WB" WIDTH="0" HEIGHT="0" CLASSID="clsid:8856F961-340A-11D0-A96B-00C04FD705A2"></OBJECT>');	document.writeln('<' + 'SCRIPT LANGUAGE="VBScript">');	document.writeln('Sub window_onunload');	document.writeln('	On Error Resume Next');	document.writeln('	Set WB = nothing');	document.writeln('End Sub');	document.writeln('Sub vbLaunchPrint');	document.writeln('	OLECMDID_PRINT = 6');	document.writeln('	OLECMDEXECOPT_DONTPROMPTUSER = 2');	document.writeln('	OLECMDEXECOPT_PROMPTUSER = 1');	document.writeln('	On Error Resume Next');	document.writeln('	WB.ExecWB OLECMDID_PRINT, OLECMDEXECOPT_DONTPROMPTUSER');	document.writeln('End Sub');	document.writeln('<' + '/SCRIPT>');}function showPrintOk( url ) {	var aWidth = 700 ;	var aHeight = parseInt( screen.height * 4 / 5 ) ;	var aLeft = parseInt( ( screen.width - aWidth ) / 2 ) ;		var aTop = parseInt( ( screen.height - aHeight ) / 2 ) ;	return window.open( url, "", "scrollbars=yes,width="+aWidth+",height="+aHeight+",left="+aLeft+",top="+aTop+",resizable=yes" ) ;}function launchPrint() {	if ( isPrint ) // NN, IE5		window.print()	else if ( isAll && !isMac ) // IE4 (Windows)		vbLauchPrint()	else // other browsers		alert("Sorry, your browser doesn't support this feature.");  	return false;}function RefreshSelf() {	var form = self.document.forms[0] ;	form.target = self.name ;	form.__Click.value = '$Refresh' ;	form.submit() ;}function initAnchorFades() {	var currentURL = unescape(window.location);	if (currentURL.indexOf('#')>-1) 		DoAnchorFade(19, currentURL.substring(currentURL.indexOf('#')+1,currentURL.length) );}function DoAnchorFade(colorId, targetId) {	if (colorId >= 1) {		var FadeSteps = new Array();		FadeSteps[1] = "ff";		FadeSteps[2] = "f0";		FadeSteps[3] = "ea";		FadeSteps[4] = "ee";		FadeSteps[5] = "e0";		FadeSteps[6] = "da";		FadeSteps[7] = "dd";		FadeSteps[8] = "d0";		FadeSteps[9] = "ca";		FadeSteps[10] = "cc";		FadeSteps[11] = "c0";		FadeSteps[12] = "ba";		FadeSteps[13] = "bb";		FadeSteps[14] = "b0";		FadeSteps[15] = "aa"		FadeSteps[16] = "a0"		FadeSteps[17] = "9a";		FadeSteps[18] = "90";		FadeSteps[19] = "99";		var FadeInterval = 200;		var nameId = "highlight_"+targetId;		var tgtId = document.getElementById(nameId);		if ( tgtId ) {			tgtId.style.backgroundColor = "#ffff" + FadeSteps[colorId];			if (colorId==1) {				tgtId.style.backgroundColor = "transparent";			}			colorId--;			setTimeout("DoAnchorFade("+colorId+",'"+targetId+"')", FadeInterval);		}	}}// -->