/* -- Adobe GoLive JavaScript Library */

CSAg = window.navigator.userAgent; CSBVers = parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);
CSIsW3CDOM = ((document.getElementById) && !(IsIE()&&CSBVers<6)) ? true : false;
function IsIE() { return CSAg.indexOf("MSIE") > 0;}
function CSIEStyl(s) { return document.all.tags("div")[s].style; }
function CSNSStyl(s) { if (CSIsW3CDOM) return document.getElementById(s).style; else return CSFindElement(s,0);  }
CSIImg=false;
function CSInitImgID() {if (!CSIImg && document.images) { for (var i=0; i<document.images.length; i++) { if (!document.images[i].id) document.images[i].id=document.images[i].name; } CSIImg = true;}}
function CSFindElement(n,ly) { if (CSBVers<4) return document[n];
	if (CSIsW3CDOM) {CSInitImgID();return(document.getElementById(n));}
	var curDoc = ly?ly.document:document; var elem = curDoc[n];
	if (!elem) {for (var i=0;i<curDoc.layers.length;i++) {elem=CSFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
	return elem;
}
function CSGetImage(n) {if(document.images) {return ((!IsIE()&&CSBVers<5)?CSFindElement(n,0):document.images[n]);} else {return null;}}
CSDInit=false;
function CSIDOM() { if (CSDInit)return; CSDInit=true; if(document.getElementsByTagName) {var n = document.getElementsByTagName('DIV'); for (var i=0;i<n.length;i++) {CSICSS2Prop(n[i].id);}}}
function CSICSS2Prop(id) { var n = document.getElementsByTagName('STYLE');for (var i=0;i<n.length;i++) { var cn = n[i].childNodes; for (var j=0;j<cn.length;j++) { CSSetCSS2Props(CSFetchStyle(cn[j].data, id),id); }}}
function CSFetchStyle(sc, id) {
	var s=sc; while(s.indexOf("#")!=-1) { s=s.substring(s.indexOf("#")+1,sc.length); if (s.substring(0,s.indexOf("{")).toUpperCase().indexOf(id.toUpperCase())!=-1) return(s.substring(s.indexOf("{")+1,s.indexOf("}")));}
	return "";
}
function CSGetStyleAttrValue (si, id, st) {
	var s=si.toUpperCase();
	var myID=id.toUpperCase()+":";
	var id1=s.indexOf(myID,st);
	if (id1==-1) return "";
	var ch=s.charAt(id1-1);
	if (ch!=" " && ch!="\t" && ch!="\n" && ch!=";" && ch!="{")
		return CSGetStyleAttrValue (si, id, id1+1);
	var start=id1+myID.length;
	ch=s.charAt(start);
	while(ch==" " || ch=="\t" || ch=="\n") {start++; ch=s.charAt(start);}
	s=s.substring(start,si.length);
	var id2=s.indexOf(";");
	return ((id2==-1)?s:s.substring(0,id2));
}
function CSSetCSS2Props(si, id) {
	var el=document.getElementById(id);
	if (el==null) return;
	var style=document.getElementById(id).style;
	if (style) {
		if (style.left=="") style.left=CSGetStyleAttrValue(si,"left",0);
		if (style.top=="") style.top=CSGetStyleAttrValue(si,"top",0);
		if (style.width=="") style.width=CSGetStyleAttrValue(si,"width",0);
		if (style.height=="") style.height=CSGetStyleAttrValue(si,"height",0);
		if (style.visibility=="") style.visibility=CSGetStyleAttrValue(si,"visibility",0);
		if (style.zIndex=="") style.zIndex=CSGetStyleAttrValue(si,"z-index",0);
	}
}
function CSSetStylePos(s,d,p) {
	if (CSIsW3CDOM)d==0?document.getElementById(s).style.left=p+"px":document.getElementById(s).style.top=p+"px";
	else if(IsIE())(d==0)?CSIEStyl(s).posLeft=p:CSIEStyl(s).posTop=p;
	else (d==0)?CSNSStyl(s).left=p:CSNSStyl(s).top=p;
}
function CSGetStylePos(s,d) {
	if (CSIsW3CDOM){CSIDOM();return parseInt((d==0)?document.getElementById(s).style.left:document.getElementById(s).style.top);}
	else if (IsIE()) {CSIEWinInit();return(d==0)?CSIEStyl(s).posLeft:CSIEStyl(s).posTop;}
	else {return (d==0)?CSNSStyl(s).left:CSNSStyl(s).top;}
}
CSIEWInit=false;
function CSIEWinInit() { if(CSIEWInit==true) return; else CSIEWInit=true; if (IsIE()&&CSBVers==4) { var i=0; var lyr=document.all.tags("div")[i++]; while(lyr) {lyr.style.posLeft=lyr.offsetLeft; lyr.style.posTop=lyr.offsetTop; lyr=document.all.tags("div")[i++];}}}
CSLoopIsRunning = false; CSFctArray = new Array; CSTimeoutID = null;
function CSLoop() {	
	CSLoopIsRunning = false;
	for (i=0;i<CSFctArray.length;i++) {
		var curFct = CSFctArray[i];
		if (curFct)	{
			if (curFct.DoFunction(curFct)) { CSLoopIsRunning = true; curFct.counter++; }
			else CSFctArray[i] = 0;
		}
	}
	if (CSLoopIsRunning) CSTimeoutID = setTimeout("CSLoop()", 1);
}
function CSStartFunction(fct,data) {
	if (!CSLoopIsRunning) { CSFctArray = 0; CSFctArray = new Array; }
	var fctInfo = new Object;
	fctInfo.DoFunction = fct; fctInfo.counter = 0; fctInfo.data = data;
	CSFctArray[CSFctArray.length] = fctInfo; 
	if (!CSLoopIsRunning) CSLoop();
}
function CSStopFunction(sceneName) {
	var i;
	for (i=0;i<CSFctArray.length;i++) {
		var curFct = CSFctArray[i];
		if (curFct){ if (curFct.data.name == sceneName){ CSFctArray[i] = 0; return; } }
	}
}
function CSStopComplete() {
	if (CSTimeoutID == null) return;
	clearTimeout (CSTimeoutID); CSLoopIsRunning = false; CSTimeoutID = null;
}
function CSMoveLoop(fInf) {
	var ticks = 60 * (((new Date()).getTime()) - fInf.data.startTime)/1000;
	var f = ticks/fInf.data.ticks;
	if (f < 1) { CSSetStylePos(fInf.data.layer,0,fInf.data.start[0] * (1-f) + fInf.data.end[0] * f);
		CSSetStylePos(fInf.data.layer,1,fInf.data.start[1] * (1-f) + fInf.data.end[1] * f); return true; }
	else { CSSetStylePos(fInf.data.layer,0,fInf.data.end[0]);
		CSSetStylePos(fInf.data.layer,1,fInf.data.end[1]); }
	return false;
}
function CSSlideObj (layer,start,end,ticks,startTime) {
	this.layer=layer;this.start=start;this.end=end;this.ticks=ticks;this.startTime=startTime;
}
function CSSlideLayer(l,pos,anim,ticks) {
	var x = pos[0]; var y = pos[1];

	if (l == '') return;
	if (ticks < 0) ticks = 0;
	if (!anim) { CSSetStylePos(l,0,x); CSSetStylePos(l,1,y); }
	else {  var fctData = new CSSlideObj(l,new Array(CSGetStylePos(l,0),CSGetStylePos(l,1)),new Array(x,y),ticks,(new Date()).getTime()); CSStartFunction(CSMoveLoop,fctData); }
}
function CSSetStyleVis(s,v) {
	if (CSIsW3CDOM){CSIDOM();document.getElementById(s).style.visibility=(v==0)?"hidden":"visible";}
	else if(IsIE())CSIEStyl(s).visibility=(v==0)?"hidden":"visible";
	else CSNSStyl(s).visibility=(v==0)?'hide':'show';
}
function CSGetStyleVis(s) {
	if (CSIsW3CDOM) {CSIDOM();return(document.getElementById(s).style.visibility=="hidden")?0:1;}
	else if(IsIE())return(CSIEStyl(s).visibility=="hidden")?0:1;
	else return(CSNSStyl(s).visibility=='hide')?0:1;
}
CSInit = new Array;
function CSScriptInit() {
if(typeof(skipPage) != "undefined") { if(skipPage) return; }
idxArray = new Array;
for(var i=0;i<CSInit.length;i++)
	idxArray[i] = i;
CSAction2(CSInit, idxArray);}
CSStopExecution=false;
function CSAction(array) {return CSAction2(CSAct, array);}
function CSAction2(fct, array) { 
	var result;
	for (var i=0;i<array.length;i++) {
		if(CSStopExecution) return false; 
		var aa = fct[array[i]];
		if (aa == null) return false;
		var ta = new Array;
		for(var j=1;j<aa.length;j++) {
			if((aa[j]!=null)&&(typeof(aa[j])=="object")&&(aa[j].length==2)){
				if(aa[j][0]=="VAR"){ta[j]=CSStateArray[aa[j][1]];}
				else{if(aa[j][0]=="ACT"){ta[j]=CSAction(new Array(new String(aa[j][1])));}
				else ta[j]=aa[j];}
			} else ta[j]=aa[j];
		}			
		result=aa[0](ta);
	}
	return result;
}
CSAct = new Object;
CSIm=new Object();
function CSIShow(n,i) {
	if (document.images) {
		if (CSIm[n]) {
			var img=CSGetImage(n);
			if (img&&typeof(CSIm[n][i].src)!="undefined") {img.src=CSIm[n][i].src;}
			if(i!=0) self.status=CSIm[n][3]; else self.status=" ";
			return true;
		}
	}
	return false;
}
function CSILoad(action) {
	im=action[1];
	if (document.images) {
		CSIm[im]=new Object();
		for (var i=2;i<5;i++) {
			if (action[i]!='') {CSIm[im][i-2]=new Image(); CSIm[im][i-2].src=action[i];}
			else CSIm[im][i-2]=0;
		}
		CSIm[im][3] = action[5];
	}
}

function CSClickReturn () {
	var bAgent = window.navigator.userAgent; 
	var bAppName = window.navigator.appName;
	if ((bAppName.indexOf("Explorer") >= 0) && (bAgent.indexOf("Mozilla/3") >= 0) && (bAgent.indexOf("Mac") >= 0))
		return true; /* dont follow link */
	else return false; /* dont follow link */
}
function CSButtonReturn () { return !CSClickReturn(); }

// AutoScroll.action v4.2.3 - February 24, 2011
// Copyright © 2000 by Walter Blady
// All rights reserved
var ASisNav4 = navigator.appName.indexOf("Netscape") >= 0 && parseInt(navigator.appVersion.charAt(0)) == 4;
var ASisNN6 = navigator.userAgent.indexOf("Netscape6") >= 0;
var ASisIE = window.navigator.userAgent.indexOf("MSIE") >= 0;
var ASisIE4 = navigator.appVersion.indexOf("MSIE 4") >= 0;
var ASisW3C = document.getElementById ? true : false;
var ASisOpera = navigator.userAgent.indexOf("Opera") >= 0;
var ASsuff = ASisOpera ? "" : "px";
var ASObject0 = new Object(), ASObject1 = new Object(), ASObject2 = new Object(), ASObject3 = new Object();
var W3CinitFlag = false, ASparamsDiv, ASaction, ASElementObj, ASget = new Array(), ASnam = new Array();
function WBAutoScroll(action) {
	ASaction = action;
	if (parseInt(action[16]) > 0) var t = setTimeout("WBAutoScrollStart()", parseInt(action[16])*1000);
	else WBAutoScrollStart();
	return;
}
function WBAutoScrollStart() {
	if (ASVersion()) {
		action = ASaction;
		var obj = eval("ASObject" + action[1]);
		obj.name = "ASObject" + action[1];
		if (obj && obj.clipingBoxDiv && obj.clipingBoxDiv.cursorScrolling) return;
		obj.ASaction = action;
		if (action[2] == 6) {
			if (obj.ASrep > 0) clearTimeout(obj.ASrep);
			if (obj.ASrepeat > 0) clearInterval(obj.ASrepeat);
			obj.ASstopFlag = true;
			return;
		}
		if (action[2] == 4 || action[2] == 5) {
			if (obj.ASrep > 0) clearTimeout(obj.ASrep);
			if (obj.ASrepeat > 0) clearInterval(obj.ASrepeat);
			obj.ASpauseFlag = false;
			if (ASaction[2] == 5) {
				if (obj.idx == 0 && !obj.ASstopFlag) obj.ASrepeat = setInterval("ASObject0.doscroll()", obj.ASdelay);
				if (obj.idx == 1 && !obj.ASstopFlag) obj.ASrepeat = setInterval("ASObject1.doscroll()", obj.ASdelay);
				if (obj.idx == 2 && !obj.ASstopFlag) obj.ASrepeat = setInterval("ASObject2.doscroll()", obj.ASdelay);
				if (obj.idx == 3 && !obj.ASstopFlag) obj.ASrepeat = setInterval("ASObject3.doscroll()", obj.ASdelay);
			}
			return;
		}
		if (action[2] == 11) { obj.ASlines += parseInt(action[13]); return; }
		if (action[2] == 12) {
			if (obj.ASlines - parseInt(action[13]) >= 1) { 
				obj.ASlines -= parseInt(action[13]);
			}
			return;
		}
		ASget.push(setInterval("{ if (ASGetElement()) WBAutoScroll2() }", 100));
		ASnam[ASget.length] = obj;
	}
	return;
}
function ASGetElement() {
	ASElementObj = eval("document.getElementById('" + ASnam[ASget.length].ASaction[5] + "')");
	return ASElementObj;
}
function WBAutoScroll2() {
	if (ASVersion()) {
		var obj = eval("ASObject" + ASnam[ASget.length].ASaction[1]);
		ASaction = obj.ASaction
		if (ASget.length > 0) clearInterval(ASget.pop());
		if (!obj.init) {
			obj.idx = ASaction[1];
			obj.init = true;
			obj.ASupDown = ASaction[2] == 0 || ASaction[2] == 1 || ASaction[2] == 8 || ASaction[2] == 10;
			obj.doinit = ASDoInit;
			obj.doinit2 = ASDoInit2;
			obj.doinit();
		}
		if (obj.contentBox.wrapBox && !obj.clipingBoxDiv.cursorScrolling) obj.doinit2();
		if (obj.contentBox.wrapBox) obj.ASyOrig = 0;
		if (obj.contentBox.wrapBox) obj.ASxOrig = 0;
		obj.ASstartDelay = parseInt(ASaction[7])*1000;
		obj.ASendDelay = parseInt(ASaction[8])*1000;
		if (ASaction[9].toLowerCase() == "full") {
			 if (ASaction[2] == 0 || ASaction[2] == 1 || ASaction[2] == 8 || ASaction[2] == 10) obj.ASpixelLines = obj.clipBoxHeight - 10;
			 if (ASaction[2] == 2 || ASaction[2] == 3 || ASaction[2] == 7 || ASaction[2] == 9) obj.ASpixelLines = obj.clipBoxWidth - 10;
		}
		else {
			obj.ASpixelLines = parseInt(ASaction[9]);
		}
		obj.ASlineDelay = parseInt(ASaction[10])*1000;
		obj.ASlines = obj.ASaction[2] == 7 || obj.ASaction[2] == 8 ? 0 : parseInt(ASaction[13]);
		obj.ASdelay = parseInt(ASaction[14]);
		obj.AShotzone = parseInt(ASaction[15]);
		obj.ASpauseFlag = false;
		if (obj.ASrep > 0) clearTimeout(obj.ASrep);
		if (obj.ASrepeat > 0) clearInterval(obj.ASrepeat);
		if (ASaction[2] == 0 || ASaction[2] == 8) {
			obj.ASupDown = true;
			obj.ASminus = false;
			if (obj.idx == 0) obj.ASrepeat = setInterval("ASObject0.doscroll()", obj.ASdelay);
			if (obj.idx == 1) obj.ASrepeat = setInterval("ASObject1.doscroll()", obj.ASdelay);
			if (obj.idx == 2) obj.ASrepeat = setInterval("ASObject2.doscroll()", obj.ASdelay);
			if (obj.idx == 3) obj.ASrepeat = setInterval("ASObject3.doscroll()", obj.ASdelay);
		}
		if (ASaction[2] == 1) {
			obj.ASupDown = true;
			obj.ASminus = true;
			if (obj.idx == 0) obj.ASrepeat = setInterval("ASObject0.doscroll()", obj.ASdelay);
			if (obj.idx == 1) obj.ASrepeat = setInterval("ASObject1.doscroll()", obj.ASdelay);
			if (obj.idx == 2) obj.ASrepeat = setInterval("ASObject2.doscroll()", obj.ASdelay);
			if (obj.idx == 3) obj.ASrepeat = setInterval("ASObject3.doscroll()", obj.ASdelay);
		}
		if (ASaction[2] == 2 || ASaction[2] == 7) {
			obj.ASupDown = false;
			obj.ASminus = false;
			if (obj.idx == 0) obj.ASrepeat = setInterval("ASObject0.doscroll()", obj.ASdelay);
			if (obj.idx == 1) obj.ASrepeat = setInterval("ASObject1.doscroll()", obj.ASdelay);
			if (obj.idx == 2) obj.ASrepeat = setInterval("ASObject2.doscroll()", obj.ASdelay);
			if (obj.idx == 3) obj.ASrepeat = setInterval("ASObject3.doscroll()", obj.ASdelay);
		}
		if (ASaction[2] == 3) {
			obj.ASupDown = false;
			obj.ASminus = true;
			if (obj.idx == 0) obj.ASrepeat = setInterval("ASObject0.doscroll()", obj.ASdelay);
			if (obj.idx == 1) obj.ASrepeat = setInterval("ASObject1.doscroll()", obj.ASdelay);
			if (obj.idx == 2) obj.ASrepeat = setInterval("ASObject2.doscroll()", obj.ASdelay);
			if (obj.idx == 3) obj.ASrepeat = setInterval("ASObject3.doscroll()", obj.ASdelay);
		}
	}
	return;
}
function ASDoScroll() {
	var panx = 0, pany = 0;
	if (!this.ASpauseFlag && this.ASautoFlag) {
		this.scrollto(this.contentBox, this.ASxloc, this.ASyloc, panx, pany);
		this.ASpauseFlag = true;
		this.ASautoFlag = false;
		if (this.idx == 0) this.ASrep = setTimeout("ASObject0.pause()", this.ASstartDelay);
		if (this.idx == 1) this.ASrep = setTimeout("ASObject1.pause()", this.ASstartDelay);
		if (this.idx == 2) this.ASrep = setTimeout("ASObject2.pause()", this.ASstartDelay);
		if (this.idx == 3) this.ASrep = setTimeout("ASObject3.pause()", this.ASstartDelay);
	}
	if (!this.ASpauseFlag && this.ASpixelLines > 0 && this.ASpixCount >= this.ASpixelLines) {
		this.ASpixCount = 0;
		this.ASpauseFlag = true;
		if (this.idx == 0) this.ASrep = setTimeout("ASObject0.pause()", this.ASlineDelay);
		if (this.idx == 1) this.ASrep = setTimeout("ASObject1.pause()", this.ASlineDelay);
		if (this.idx == 2) this.ASrep = setTimeout("ASObject2.pause()", this.ASlineDelay);
		if (this.idx == 3) this.ASrep = setTimeout("ASObject3.pause()", this.ASlineDelay);
	}
	if (!this.ASpauseFlag) {
		var origin, posOrig;
		if (this.ASupDown) {
			if (this.ASminus) {
				this.end = this.ASyloc <= this.ASyDest;
				if (!this.end) {
					origin = this.contentBox.wrapBox ? this.ASyDest : this.ASyOrig;
					posOrig = origin >= 0 ? this.ASyloc - this.ASlines <= origin : this.ASyloc - this.ASlines >= origin;
					if (this.contentBox.wrapBox) {
						this.ASyloc = posOrig ? this.ASyloc - this.ASlines : origin;
					}
					else {
						this.ASyloc = this.ASyloc - this.ASlines;
					}
					pany = this.ASyloc <= 0 ? this.contBoxHeight : -this.contBoxHeight;
				}
			}
			else {
				this.end = this.ASyloc >= Math.abs(this.ASyDestu);
				if (!this.end) {
					origin = this.contentBox.wrapBox ? this.ASyDestu : this.ASyOrig;
					posOrig = origin >= 0 ? this.ASyloc + this.ASlines <= origin : this.ASyloc + this.ASlines >= origin;
					if (this.contentBox.wrapBox) {
						this.ASyloc = posOrig ? this.ASyloc + this.ASlines : origin;
					}
					else {
						this.ASyloc = this.ASyloc + this.ASlines;
					}
					pany = this.ASyloc <= 0 ? this.contBoxHeight : -this.contBoxHeight;
				}
			}
		}
		else {
			if (this.ASminus) {
				this.end = this.ASxloc <= this.ASxDest;
				if (!this.end) {
					origin = this.contentBox.wrapBox ? this.ASxDest : this.ASxOrig;
					posOrig = origin >= 0 ? this.ASxloc - this.ASlines <= origin : this.ASxloc - this.ASlines >= origin;
					if (this.contentBox.wrapBox) {
						this.ASxloc = posOrig ? this.ASxloc - this.ASlines : origin;
					}
					else {
						this.ASxloc = this.ASxloc - this.ASlines;
					}
					panx = this.ASxloc <= 0 ? this.contBoxWidth : -this.contBoxWidth;
				}
			}
			else {
				this.end = this.ASxloc >= Math.abs(this.ASxDestl);
				if (!this.end) {
					origin = this.contentBox.wrapBox ? this.ASxDestl : this.ASxOrig;
					posOrig = origin >= 0 ? this.ASxloc + this.ASlines <= origin : this.ASxloc + this.ASlines >= origin;
					if (this.contentBox.wrapBox) {
						this.ASxloc = posOrig ? this.ASxloc + this.ASlines : origin;
					}
					else {
						this.ASxloc = this.ASxloc + this.ASlines;
					}
					panx = this.ASxloc <= 0 ? this.contBoxWidth : -this.contBoxWidth;
				}
			}
		}
		this.scrollto(this.contentBox, this.ASxloc, this.ASyloc, panx, pany);
		this.ASpixCount += this.ASlines;
	}
	if (this.end) {
		this.end = false;
		if (this.ASloop) {
			this.ASpauseFlag = true;
			this.ASautoFlag = true;
			this.ASyloc = this.ASyOrig;
			this.ASxloc = this.ASxOrig;
			this.ASpixCount = 0;
			if (this.contentBox.wrapBox) {
				this.scrollto(this.contentBox, this.ASxloc, this.ASyloc, panx, pany);
				this.ASpixCount += this.ASlines;
			}
			if (this.idx == 0) this.ASrep = setTimeout("ASObject0.pause()", this.ASendDelay);
			if (this.idx == 1) this.ASrep = setTimeout("ASObject1.pause()", this.ASendDelay);
			if (this.idx == 2) this.ASrep = setTimeout("ASObject2.pause()", this.ASendDelay);
			if (this.idx == 3) this.ASrep = setTimeout("ASObject3.pause()", this.ASendDelay);
		}
		else {
			if (this.ASrepeat > 0 && this.ASaction[2] != 7 && ASaction[2] != 8) clearInterval(this.ASrepeat);
			if (this.ASrep > 0) clearTimeout(this.ASrep);
		}
	}
	return;
}
function ASScrollTo(obj, x, y, panx, pany) {
	if (ASisW3C) {
		obj.left = x + ASsuff;
		obj.top = y + ASsuff;
		if (obj.wrapBox) {
			obj.wrapBox.left = (x + panx) + ASsuff;
			obj.wrapBox.top = (y + pany) + ASsuff;
		}
	}
	return;
}
function ASPause() {
	this.ASpauseFlag = false;
	clearTimeout(this.ASrep);
	return;
}
function ASGetObject(objName) {
	var params;
	if (ASisW3C) {
		params = eval('document.getElementById("' + objName + '").style');
		ASparamsDiv = eval('document.getElementById("' + objName + '")');
	}
	return params;
}
function ASFindLayerObject(layer, thisLayer) {
	if (thisLayer) {
		var thisDocument = thisLayer.document;
	}
	else {
		var thisDocument = document;
	}
	var layerObj = thisDocument[layer];
	if (layerObj) {
		return layerObj;
	}
	else {
		for (var i = 0; i < thisDocument.layers.length; i++) {
			layerObj = ASFindLayerObject(layer, thisDocument.layers[i]); 
			if (layerObj) {
				break;
			}
		}
	}
	return layerObj;
}
function ASListenOn() {
	if (this.addEventListener) {
		this.addEventListener("mousemove", ASAutoScrollControl, false);
		this.addEventListener("mouseover", ASAutoScrollControl, false);
	}
	else if (document.attachEvent) {
		if (!ASisIE) {
			this.attachEvent("onmousemove", ASAutoScrollControl);
			this.attachEvent("onmouseover", ASAutoScrollControl);
		}
		else {
			this.onmousemove = ASAutoScrollControl;
			this.onmouseover = ASAutoScrollControl;
		}
	}
	return;
}
function ASBorderListenOn() {
	if (this.addEventListener) {
		this.addEventListener("mousemove", ASAutoScrollBorderControl, false);
	}
	else if (this.attachEvent) {
		if (!ASisIE) {
			this.attachEvent("onmousemove", ASAutoScrollBorderControl);
		}
		else {
			this.onmousemove = ASAutoScrollBorderControl;
		}
	}
	return;
}
function ASListenOff() {
	if (this.addEventListener) {
		this.removeEventListener("mousemove", ASAutoScrollControl, false);
		this.removeEventListener("mouseover", ASAutoScrollControl, false);
		this.removeEventListener("mousemove", ASAutoScrollBorderControl, false);
	}
	else if (this.attachEvent) {
		if (!ASisIE) {
			this.detachEvent("onmousemove", ASAutoScrollControl);
			this.detachEvent("onmouseover", ASAutoScrollControl);
			this.detachEvent("onmousemove", ASAutoScrollBorderControl);
		}
		else {
			this.onmousemove = null;
			this.onmouseover = null;
		}
	}
	return;
}
function ASAutoScrollControl(e) {
	var e = (ASisIE) ? event : e;
	this.x = e.pageX ? e.pageX : window.event.clientX;
	this.y = e.pageY ? e.pageY : window.event.clientY;
	var st = document.body.scrollTop + document.documentElement.scrollTop;
	var sl = document.body.scrollLeft + document.documentElement.scrollLeft;
	this.x = ASisIE ? this.x + sl : this.x;
	this.y = ASisIE ? this.y + st : this.y;
	if (!this.inbounds(e)) {
		clearTimeout(this.obj.ASrep);
		clearInterval(this.obj.ASrepeat);
		this.hotspoton = false;
		this.obj.clipingBoxDiv.cursorScrolling = false;
		this.obj.init = false;
	}
	if (this.hotspoton) {
		if (this.obj.ASaction[2] == 7) {
			this.obj.ASupDown = false;
			this.obj.ASminus = this.x >= this.obj.div.hmidpoint;
			var l = (((this.x-this.obj.div.clipBoxLeft) * -100 / (this.obj.div.clipBoxWidth/2)) + 100) *.1;
			var r = (((this.x-this.obj.div.clipBoxLeft) * 100 / (this.obj.div.clipBoxWidth/2)) - 100) *.1;
			this.obj.ASlines = this.x >= this.obj.div.hmidpoint ? r : l;
		}
		else if (this.obj.ASaction[2] == 8) {
			this.obj.ASupDown = true;
			this.obj.ASminus = this.y >= this.obj.div.vmidpoint;
			var t = (((this.y-this.obj.div.clipBoxTop) * -100 / (this.obj.div.clipBoxHeight/2)) + 100) *.1;
			var b = (((this.y-this.obj.div.clipBoxTop) * 100 / (this.obj.div.clipBoxHeight/2)) - 100) *.1;
			this.obj.ASlines = this.y >= this.obj.div.vmidpoint ? b : t;
		}
	}
	else {
		this.hotspoton = this.hotspot(e);
	}
	return;
}
function ASInBounds(e) {
	var e = (ASisIE) ? event : e;
	this.x = e.pageX ? e.pageX : window.event.clientX;
	this.y = e.pageY ? e.pageY : window.event.clientY;
	var st = document.body.scrollTop + document.documentElement.scrollTop;
	var sl = document.body.scrollLeft + document.documentElement.scrollLeft;
	this.x = ASisIE ? this.x + sl : this.x;
	this.y = ASisIE ? this.y + st : this.y;
	return this.x > this.obj.div.clipBoxLeft && this.x < (this.obj.div.clipBoxLeft + this.obj.div.clipBoxWidth) && this.y > this.obj.div.clipBoxTop && this.y < (this.obj.div.clipBoxTop + this.obj.div.clipBoxHeight);
}
function ASHotSpot(e) {
	var e = (ASisIE) ? event : e;
	this.x = e.pageX ? e.pageX : window.event.clientX;
	this.y = e.pageY ? e.pageY : window.event.clientY;
	var st = document.body.scrollTop + document.documentElement.scrollTop;
	var sl = document.body.scrollLeft + document.documentElement.scrollLeft;
	this.x = ASisIE ? this.x + sl : this.x;
	this.y = ASisIE ? this.y + st : this.y;
	if (this.obj.ASaction[2] == 7 || this.obj.ASaction[2] == 8) return this.x > this.obj.div.cursorL && this.x < this.obj.div.cursorR && this.y > this.obj.div.cursorT && this.y < this.obj.div.cursorB;
}
function ASAutoScrollBorderControl(e) {
	var e = (ASisIE) ? event : e;
	this.x = e.pageX ? e.pageX : window.event.clientX;
	this.y = e.pageY ? e.pageY : window.event.clientY;
	var st = document.body.scrollTop + document.documentElement.scrollTop;
	var sl = document.body.scrollLeft + document.documentElement.scrollLeft;
	this.x = ASisIE ? this.x + sl : this.x;
	this.y = ASisIE ? this.y + st : this.y;
	if (this.inborderbounds(e)) {
		if (!this.obj.div.scrolling) {
			if (this.obj.ASaction[2] == 9) {
				this.obj.ASminus = this.x >= this.obj.div.hmidpoint;
				if (this.obj.idx == 0) this.ASrepeat = setInterval("ASObject0.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 1) this.ASrepeat = setInterval("ASObject1.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 2) this.ASrepeat = setInterval("ASObject2.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 3) this.ASrepeat = setInterval("ASObject3.doscroll()", this.obj.ASdelay);
			}
			if (this.obj.ASaction[2] == 10) {
				this.obj.ASminus = this.y >= this.obj.div.vmidpoint;
				if (this.obj.idx == 0) this.ASrepeat = setInterval("ASObject0.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 1) this.ASrepeat = setInterval("ASObject1.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 2) this.ASrepeat = setInterval("ASObject2.doscroll()", this.obj.ASdelay);
				if (this.obj.idx == 3) this.ASrepeat = setInterval("ASObject3.doscroll()", this.obj.ASdelay);
			}
			this.obj.div.scrolling = true;
		}
	}
	else {
		clearTimeout(this.ASrep);
		clearInterval(this.ASrepeat);
		this.obj.div.scrolling = false;
		if (this.obj.ASxloc < 0) this.obj.contentBox.wrapBox.left = this.obj.ASxloc + this.obj.contBoxWidth + "px";
	}
	return;
}
function ASInBorderBounds(e) {
	var isin = false;
	var e = (ASisIE) ? event : e;
	this.x = e.pageX ? e.pageX : window.event.clientX;
	this.y = e.pageY ? e.pageY : window.event.clientY;
	var st = document.body.scrollTop + document.documentElement.scrollTop;
	var sl = document.body.scrollLeft + document.documentElement.scrollLeft;
	this.x = ASisIE ? this.x + sl : this.x;
	this.y = ASisIE ? this.y + st : this.y;
	var l1 = this.obj.div.clipBoxLeft+1, l2 = this.obj.div.clipBoxLeft+this.obj.AShotzone; r1 = this.obj.div.clipBoxLeft+this.obj.div.clipBoxWidth-this.obj.AShotzone, r2 = this.obj.div.clipBoxLeft+this.obj.div.clipBoxWidth-1;
	var t1 = this.obj.div.clipBoxTop+1, t2 = this.obj.div.clipBoxTop+this.obj.AShotzone; b1 = this.obj.div.clipBoxTop+this.obj.div.clipBoxHeight-this.obj.AShotzone, b2 = this.obj.div.clipBoxTop+this.obj.div.clipBoxHeight-1;
	if (this.obj.ASaction[2] == 9) var isin = ((this.x >= l1 && this.x <= l2) || (this.x >= r1 && this.x <= r2)) && this.y >= t1 && this.y <= b2;
	else if (this.obj.ASaction[2] == 10) var isin = ((this.y >= t1 && this.y <= t2) || (this.y >= b1 && this.y <= b2)) && this.x >= l1 && this.x <= r2;
	return isin;
}
function ASDoInit() {
	this.getobject = ASGetObject;
	this.scrollto = ASScrollTo;
	this.pause = ASPause;
	this.doscroll = ASDoScroll;
	this.clipingBox = this.getobject(this.ASaction[4]);
	this.clipingBoxDiv = ASparamsDiv;
	this.clipingBoxDiv.ASaction = this.ASaction;
	document.obj = this;
	document.obj.div = this.clipingBoxDiv;
	document.listenon = ASListenOn;
	document.listenoff = ASListenOff;
	document.hotspot = ASHotSpot;
	document.hotspoton = false;
	document.inbounds = ASInBounds;
	document.inborderbounds = ASInBorderBounds;
	document.listenborderon = ASBorderListenOn;
	document.hotborderspoton = false;
	this.contentBox = this.getobject(this.ASaction[5]);
	this.contentBoxDiv = ASparamsDiv;
	this.contentBox.wrapBox = null;
	if (this.ASaction[6] != "") {
		this.contentBox.wrapBox = this.getobject(this.ASaction[6]);
	}
	this.ASloop = this.contentBox.wrapBox ? true : this.ASaction[11];
	this.ASscrollOut = this.contentBox.wrapBox ? true : this.ASaction[12];
	this.ASstopFlag = false;
 	this.ASrepeat = 0;
 	this.ASrep = 0;
	this.ASstartDelay = 0;
	this.ASlineDelay = 0;
	this.ASendDelay = 0;
	this.ASyDest = 0;
	this.ASyOrig = 0;
	this.ASyloc = 0;
	this.ASxDest = 0;
	this.ASxOrig = 0;
	this.ASxloc = 0;
	this.ASpixCount = 0;
	this.ASpauseFlag = false;
	this.ASautoFlag = this.ASaction[3] == 0 ? true : false;
	this.ASstopFlag = false;
	this.end = false;
	if (ASisW3C) {
		var clipingBox = document.getElementById(this.ASaction[4]);
		var contentBox = document.getElementById(this.ASaction[5]);
		this.contBoxWidth = contentBox.clientWidth;
		this.contBoxHeight = contentBox.clientHeight;
		this.contBoxTop = contentBox.offsetTop;
		this.contBoxLeft = contentBox.offsetLeft;
		this.clipBoxWidth = clipingBox.clientWidth;
		this.clipBoxHeight = clipingBox.clientHeight;
		this.clipBoxTop = clipingBox.offsetTop;
		this.clipBoxLeft = clipingBox.offsetLeft;
		this.clipingBoxDiv.clipBoxWidth = clipingBox.clientWidth;
		this.clipingBoxDiv.clipBoxHeight = clipingBox.clientHeight;
		this.clipingBoxDiv.clipBoxTop = parseInt(this.clipBoxTop);
		this.clipingBoxDiv.clipBoxLeft = parseInt(this.clipBoxLeft);
		this.clipingBox.clip = "rect(" + 0 + "px " + clipingBox.clientWidth + "px " + clipingBox.clientHeight + "px " + 0 + "px)";
		this.clipingBox.overflow = "hidden";
	}
	this.clipingBoxDiv.cursorL = this.clipingBoxDiv.clipBoxLeft;
	this.clipingBoxDiv.cursorR = this.clipingBoxDiv.clipBoxLeft + this.clipBoxWidth;
	this.clipingBoxDiv.cursorT = this.clipingBoxDiv.clipBoxTop;
	this.clipingBoxDiv.cursorB = this.clipingBoxDiv.clipBoxTop + this.clipBoxHeight;
	var opy = this.clipingBoxDiv.offsetParent ? this.clipingBoxDiv.offsetParent.offsetTop : 0;
	var opx = this.clipingBoxDiv.offsetParent ? this.clipingBoxDiv.offsetParent.offsetLeft : 0;
	this.clipingBoxDiv.hmidpoint = this.clipingBoxDiv.clipBoxLeft + (this.clipBoxWidth / 2 + opy);
	this.clipingBoxDiv.vmidpoint = this.clipingBoxDiv.clipBoxTop + (this.clipBoxHeight / 2) + opx;
	this.clipingBoxDiv.obj = this;
	if (this.contentBox.wrapBox) {
		if (ASisW3C) {
			if (this.ASupDown) {
				this.contentBox.wrapBox.left = this.contBoxLeft;
				this.contentBox.wrapBox.top = this.contBoxTop < 0 ? this.contBoxTop + this.contBoxHeight + ASsuff : this.contBoxTop - this.contBoxHeight + ASsuff;
			}
			else {
				this.contentBox.wrapBox.top = this.contBoxTop;
				this.contentBox.wrapBox.left = this.contBoxLeft < 0 ? this.contBoxLeft + this.contBoxWidth + ASsuff : this.contBoxLeft - this.contBoxWidth + ASsuff;
			}
		}
	}
	this.ASyOrig = this.contBoxTop;
	this.ASxOrig = this.contBoxLeft;
	this.ASyloc = this.contBoxTop;
	this.ASxloc = this.contBoxLeft;
	this.ASminus = this.ASaction[2] == 1 || this.ASaction[2] == 3;
	if (this.ASscrollOut) {
		this.ASyDest = -1*this.contBoxHeight;
		this.ASyDestu = this.contBoxHeight;
		this.ASxDest = -1*this.contBoxWidth;
		this.ASxDestl = this.contBoxWidth;
	}
	else {
		this.ASyDest = -1*(this.contBoxHeight - this.clipBoxHeight);
		this.ASyDestu = 0;
		this.ASxDest = -1*(this.contBoxWidth - this.clipBoxWidth);
		this.ASxDestl = 0;
	}
	if (this.ASaction[2] == 7 || this.ASaction[2] == 8) {
		document.listenoff();
		document.listenon();
		this.clipingBoxDiv.cursorScrolling = true;
	}
	if (this.ASaction[2] == 9 || this.ASaction[2] == 10) {
		document.listenoff();
		document.listenborderon();
		this.clipingBoxDiv.cursorScrolling = true;
	}
	return;
}
function ASDoInit2() {
	if (ASisW3C) {
		var clipingBox = document.getElementById(this.ASaction[4]);
		var contentBox = document.getElementById(this.ASaction[5]);
		this.contBoxWidth = contentBox.clientWidth;
		this.contBoxHeight = contentBox.clientHeight;
		this.contBoxTop = contentBox.offsetTop;
		this.contBoxLeft = contentBox.offsetLeft;
		this.clipBoxWidth = clipingBox.clientWidth;
		this.clipBoxHeight = clipingBox.clientHeight;
		this.clipBoxTop = clipingBox.offsetTop;
		this.clipBoxLeft = clipingBox.offsetLeft;
		this.clipingBoxDiv.clipBoxWidth = clipingBox.clientWidth;
		this.clipingBoxDiv.clipBoxHeight = clipingBox.clientHeight;
		this.clipingBoxDiv.clipBoxTop = parseInt(this.clipBoxTop);
		this.clipingBoxDiv.clipBoxLeft = parseInt(this.clipBoxLeft);
		this.clipingBox.clip = "rect(" + 0 + "px " + clipingBox.clientWidth + "px " + clipingBox.clientHeight + "px " + 0 + "px)";
		this.clipingBox.overflow = "hidden";
	}
	this.clipingBoxDiv.cursorL = this.clipingBoxDiv.clipBoxLeft;
	this.clipingBoxDiv.cursorR = this.clipingBoxDiv.clipBoxLeft + this.clipBoxWidth;
	this.clipingBoxDiv.cursorT = this.clipingBoxDiv.clipBoxTop;
	this.clipingBoxDiv.cursorB = this.clipingBoxDiv.clipBoxTop + this.clipBoxHeight;
	this.clipingBoxDiv.hmidpoint = this.clipingBoxDiv.clipBoxLeft + (this.clipBoxWidth / 2);
	this.clipingBoxDiv.vmidpoint = this.clipingBoxDiv.clipBoxTop + (this.clipBoxHeight / 2);
	this.clipingBoxDiv.obj = this;
	this.scrolling = false;
	if (this.contentBox.wrapBox) {
		if (ASisW3C) {
			if (this.ASupDown) {
				this.contentBox.wrapBox.left = this.contBoxLeft;
				this.contentBox.wrapBox.top = this.ASminus ? this.contBoxTop + this.contBoxHeight + ASsuff : this.contBoxTop - this.contBoxHeight + ASsuff;
			}
			else {
				this.contentBox.wrapBox.top = this.contBoxTop;
				this.contentBox.wrapBox.left = this.ASminus ? this.contBoxLeft + this.contBoxWidth + ASsuff : this.contBoxLeft - this.contBoxWidth + ASsuff;
			}
		}
	}
	this.ASyOrig = this.contBoxTop;
	this.ASxOrig = this.contBoxLeft;
	this.ASyloc = this.contBoxTop;
	this.ASxloc = this.contBoxLeft;
	return;
}
function ASVersion() {
	return true;
}
//

//-->

// OUT utility Javascript library 1.4.3
// Script copyright 1999-2001 OUT Media Design GmbH. All rights reserved.
// This version needs the Adobe GoLive Netscape 6 Fix installed to work in NN6

var CSIsW3CDOM = CSIsW3CDOM; // declare variable in case the NN6 Fix isn't installed
if(!CSIsW3CDOM) { CSIsW3CDOM = false; } // define in case the NN6 Fix isn't installed

function OUTFindFrame(n,win) {
	var curFrames = win ? win.frames : top.frames;
	var frame = n=='' ? window : curFrames[n];
	if (!frame) {
		for (var i=0;i<curFrames.length;i++) {
			frame = OUTFindFrame(n,curFrames[i]);
			if (frame)
				return frame;
		}
	}
	return frame;
}

function OUTFindElement(n,ly,cmp) {
	if (cmp) n=OUTfindComponentElementName(n,ly);
	if (CSIsW3CDOM) { CSInitImgID();return document.getElementById(n); } 
	var curDoc = ly ? (ly.document ? ly.document : ly) : document;
	var elem = curDoc[n];
	if (!elem && curDoc.layers) { for (var i=0;i<curDoc.layers.length;i++) {
		elem = OUTFindElement(n,curDoc.layers[i]); if (elem) return elem; }}
	return elem;
}


// functions to search for AGL component objects named like this "Cmp003B4E7300brian"

function OUTfindComponentElementName(n,ly){
	var objn = '';
	var curDoc = ly ? (ly.document ? ly.document : ly) : (document.all ? document.all : document);
	if (CSIsW3CDOM) {
		curDoc = document.getElementsByTagName("*");
		for (var i=0; i<curDoc.length; i++) {
			objn = curDoc[i].name;
			if (objn && objn.indexOf("Cmp")==0 && objn.substr(13)==n) return objn;
 		}
	}
	else {
		for (objn in curDoc) {
			if (objn && objn.indexOf("Cmp")==0 && objn.substr(13)==n) return objn;
 		}
		if (!IsIE() && curDoc.layers) { for (var i=0;i<curDoc.layers.length;i++) {
			objn = OUTfindComponentElementName(n,curDoc.layers[i]);if (objn) return objn; }
		}
	}
	return null;
}


function OUTgetValuesFromURL(n) {
	var u=window.location.search;
	var a=new Array();
	if (u!="") {
		u=u.substring(u.indexOf('?')+1, u.length);
		u=u.split('&');
        for (var i=0; i<u.length; i++) { var p=u[i].split('='); if (p[0]==n) a[a.length]=p; }
	}
	return a;
}


function OUTcheckValueFromURL(n,v) {
	var a = OUTgetValuesFromURL(n);
	if (a) { for (var i in a) { if (a[i] && a[i][1]==v) return true; } }
	return false;
}
// OUT Lock Rollover Action Script Library 1.3.6
// Script copyright 1999 - 2002 OUT Media Design GmbH. All rights reserved.

var OUTlckTimeout = new Array();
var OUTlckIm = new Object();
function OUTdoLckBtnIm(action,cmp) {
	var n = cmp ? OUTfindComponentElementName(action[1]) : action[1];
	var g = OUTlckGrpName(action[2]);
	var img = null;
	OUTlckTimeout[n] = OUTlckTimeout[n] ? clearTimeout(OUTlckTimeout[n]) : 0;
	if (n!="" && !CSIm[n]) {//in case the CSIm object is not available, defer locking
		OUTlckTimeout[n] = setTimeout("OUTdoLckBtnIm(new Array('','"+action[1]+"','"+action[2]+"',"+action[3]+"),"+cmp+")",500);
		return false;
	}
	if (document.images) {
		if (!OUTlckIm[g]){//create group if not available
			eval("OUTlckIm."+g +" = new Object()");
			OUTlckIm[g].name='';OUTlckIm[g].main='';OUTlckIm[g].over='';
		} else if (OUTlckIm[g].name!=n) {
			var lckd = OUTlckIm[g].name;
			if (CSIm[lckd]) {//restore last locked image
				img = (!IsIE()) ? OUTFindElement(lckd,0) : document[lckd];
				if (img) {
					img.src = OUTlckIm[g].main;
					CSIm[lckd][0].src = OUTlckIm[g].main;
					CSIm[lckd][1].src = OUTlckIm[g].over;
				}
			}
		}
		if (CSIm[n] && OUTlckIm[g].name!=n) {//lock image
			//save new locked image
			OUTlckIm[g].main = CSIm[n][0].src;
			OUTlckIm[g].over = CSIm[n][1].src;
			//replace main & over with click image
			CSIm[n][0].src = CSIm[n][2].src;
			if (action[3]!=true) CSIm[n][1].src = CSIm[n][2].src;
		}
		OUTlckIm[g].name = n; // change name here to allow unlock
		//display image
		CSIShow(n,2);
		return true;
	}
	return false;
}

function OUTlckGrpName(g) {  return g ? "group_"+g : "group_all"; }


// OUT Lock Rollover Action v1.4
// Script copyright 1999-2002, OUT Media Design GmbH. All rights reserved.

function OUTlckBtnIm(action) {
	return OUTdoLckBtnIm(action,false);
}
SSnumimg=1; SSsens2=-1;SSsens3=-1
function CSSlideShow(action) 
{
SSmax=action[2]
SSimgNom=action[1]
SSloop=action[4]
SSsens=action[3] 
SSpalin=action[5]
var SSimg = null;
	if (document.images) {
		if (!IsIE()&&CSBVers<5) SSimg = CSFindElement(SSimgNom,0);
		else SSimg = document.images[SSimgNom];
SSstr=SSimg.src
SSn=SSstr.length
SSp=SSn-6
SSpstr=SSstr.substring(0,SSp)
SSnimg=SSstr.substring(SSp,SSp+2)
SSformat=SSstr.substring(SSp+2,SSn)
if (SSformat==".jpg" || SSformat==".JPG" || SSformat==".gif" || SSformat==".GIF")
{}
else
{
 alert("Image extension must be .jpg or .gif (case sensitive). Images must be numbered 01, 02 ...")
}
slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
}
}
function slide(SSmax,SSformat,SSpstr,SSnimg,SSimgNom,SSloop,SSpalin)
{
if (SSsens2==true) {SSsens=true}
if (SSsens2==false) {SSsens=false}
if (SSsens==true) 
{
SSsuite=SSnumimg-1
	if (SSnumimg>SSmax)SSsuite=SSmax
	if (SSnumimg<=1 & SSloop==true & SSpalin!=true) { SSsuite=SSmax }
	if (SSnumimg<=1 & SSloop==true & SSpalin==true) { 
		if (SSsens2==-1 & SSsens3==-1) {SSsuite=SSmax;SSsens3=1} else { SSsuite=SSnumimg+1; SSsens2=false }}
	if (SSnumimg<=1 & SSloop!=true & SSpalin!=true) {
		if  (SSsens2==-1 & SSsens3==-1) { SSsuite=SSmax;SSsens3=1 } else {SSsuite=SSnumimg; SSfini()}}
}
else
{
SSmax=SSmax-1
SSsuite=SSnumimg+1
	if (SSnumimg>SSmax & SSloop==true & SSpalin!=true) { SSsuite=1}
	if (SSnumimg>SSmax & SSloop==true & SSpalin==true) {SSsuite=SSnumimg-1; SSsens2=true }
	if (SSnumimg>SSmax & SSloop!=true &  SSpalin!=true) { SSsuite=SSnumimg;SSfini() }
	if (SSnumimg<1) SSsuite=1
}
SSnumimg=SSsuite
if (SSsuite<10) {
	SSaller="0"+SSsuite
	}
	else SSaller=SSsuite
SSsource=SSpstr+SSaller+SSformat
var SSimg = null;
	if (document.images) {
		if (!IsIE()&&CSBVers<5) SSimg = CSFindElement(SSimgNom,0);
		else SSimg = document.images[SSimgNom];
		if (SSimg) SSimg.src = SSsource;
	}
}
function SSfini() {
}

function CSMoveTo(action) { CSSlideLayer(action[1],action[2],action[3],action[4]); }

function CSSetImageURL(action) {
	var img=CSGetImage(action[1]);
	if (img) img.src=action[2];
}

function CSCloseWindow() { 
if (self.parent.frames.length != 0) {
	self.parent.close()	
	} else {
	window.close()
	}
}

function CSGoBack1() { history.back() }

// OUT Set Image URL in Frame 1.3.4
// Script copyright 1999-2002 OUT Media Design GmbH. All rights reserved.

function OUTSetImageURLinFrame(action) {
	var img = null;
	var curDoc = null;
	var url = action[2]; if (!url) return;
	if (action[3]=='' || action[3]=="_self" || action[3]=="_blank" || action[3]=="_top" || action[3]=="_parent") { curDoc = document; }
	else { curDoc = OUTFindFrame(action[3],0); curDoc = curDoc ? curDoc.document : document; }
	if (curDoc && curDoc.images) {
		if (url.indexOf("://")<0 && url.charAt(0)!='/') {
			url = location.pathname;
			url = url.substr(0,url.lastIndexOf('/')+1)+action[2];
		}
		if (!IsIE()&&!CSIsW3CDOM) img = OUTFindElement(action[1],curDoc,action[4]);
		else img = curDoc.images[action[1]];
		if (img) img.src = url;
	}
}
function CSGotoLink(action) {
	if (action[2].length) {
		var hasFrame=false;
		for(i=0;i<parent.frames.length;i++) { if (parent.frames[i].name==action[2]) { hasFrame=true; break;}}
		if (hasFrame==true)
			parent.frames[action[2]].location = action[1];
		else
			window.open (action[1],action[2],"");
	}
	else location = action[1];
}

// JM Remove Link Box - Version 1.9
// GoLive Action by Jesper G.O. Møller 2006 - http://www.jart.dk/jgom/index.html
//
function JMRemoveLinkbox() {
	var a=["a","area"];
	for(i in a){b=document.getElementsByTagName(a[i]);
	for(j in b)b[j].onfocus=function(){this.blur()};}
}
//
//-->

function CSShowHide(action) {
	if (action[1] == '') return;
	var type=action[2];
	if(type==0) CSSetStyleVis(action[1],0);
	else if(type==1) CSSetStyleVis(action[1],1);
	else if(type==2) { 
		if (CSGetStyleVis(action[1]) == 0) CSSetStyleVis(action[1],1);
		else CSSetStyleVis(action[1],0);
	}
}

function CSPAKtrg2frames(action) { 
	parent.frames[action[1]].location.href = action[2]
	parent.frames[action[3]].location.href = action[4]
 }

function CSOpenPositionWindow(action) {
// Matt Ridley, Dec. '98
	var wf = "";	
	wf = wf + "width=" + action[3];
	wf = wf + ",height=" + action[4];
	wf = wf + ",resizable=" + (action[5] ? "yes" : "no");
	wf = wf + ",scrollbars=" + (action[6] ? "yes" : "no");
	wf = wf + ",menubar=" + (action[7] ? "yes" : "no");
	wf = wf + ",toolbar=" + (action[8] ? "yes" : "no");
	wf = wf + ",directories=" + (action[9] ? "yes" : "no");
	wf = wf + ",location=" + (action[10] ? "yes" : "no");
	wf = wf + ",status=" + (action[11] ? "yes" : "no");	
	wf = wf + ",left=" + action[12];
	wf = wf + ",top=" + action[13];	
	window.open(action[1],action[2],wf);
}
function CSSlideShowAuto(action) 
{
SSAfini=0
SSAnumimg=0
SSAmax=action[2]
SSAimgNom=action[1]
SSAtemps=action[3]*1000
if (action[4]==true) 
		{
		SSAstop=true
		}
	else SSAstop=false
var SSAimg = null;
	if (document.images) {
		if (!IsIE()&&CSBVers<5) SSAimg = CSFindElement(SSAimgNom,0);
		else SSAimg = document.images[SSAimgNom];
str=SSAimg.src
n=str.length
p=n-6
SSApstr=str.substring(0,p)
SSAnimg=str.substring(p,p+2)
SSAformat=str.substring(p+2,n)
if (SSAformat==".jpg" || SSAformat==".JPG" || SSAformat==".gif" || SSAformat==".GIF")
{}
else
{
 alert("Image extension must be .jpg or .gif (case sensitive). Images must use 2 digit naming starting with 01, 02 ... plus extension")
}
if (SSAnimg.substring(0,1)=="0") 
{
SSAnumimg=Number(SSAnimg.substring(1,2))
}
else
{SSAnumimg=Number(SSAnimg)}


SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
}
}

function SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
{
setTimeout("slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)",SSAtemps)
}


function slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
{
if (SSAfini==1) {
SSAnumimg = SSAnumimg-2
CSSlideShowAutoPause()
}
else 
{
SSAmax=SSAmax-1
SSAsuite=SSAnumimg+1
	if (SSAnumimg>SSAmax)
		{
		SSAsuite=1
		if (SSAstop==true) SSAfini=1
		else
		SSAfini=0
		}
	if (SSAnumimg<1) SSAsuite=1
SSAnumimg=SSAsuite
if (SSAsuite<10) {
	SSAaller="0"+SSAsuite
	}
	else SSAaller=SSAsuite
SSAsource=SSApstr+SSAaller+SSAformat
var SSAimg = null;
	if (document.images) {
		if (!IsIE()&&CSBVers<5) SSAimg = CSFindElement(SSAimgNom,0);
		else SSAimg = document.images[SSAimgNom];
		if (SSAimg) SSAimg.src = SSAsource;
	}
SSAtempo(SSAmax,SSAimgNom,SSAtemps,SSAstop,SSApstr,SSAnimg,SSAformat)
}
}

function CSSlideShowAutoPause() 
{}

function CSSlideShowAutoStop(action) 
{
if (SSAfini==0) SSAfini=1
else SSAfini=0 ; SSAnumimg = SSAnumimg+2 ;  slideAuto(SSAmax,SSAimgNom,SSAstop,SSApstr,SSAnimg,SSAformat)
}

function CSResizeWindow(action) { 
	if(navigator.appVersion.charAt(0) >=4) { window.resizeTo (action[1],action[2]) }
}

// PixelCop.action v1.6.2 - October, 2010
// © Copyright 1999 by Walter Blady
// All rights reserved
var PiCisIE = navigator.appVersion.indexOf("MSIE") >= 0;
var PiCW3C = document.getElementById ? true : false;
var PiCResArray = new Array(640, 480, 800, 600, 832, 624, 1024, 768, 1152, 870, 1280, 960, 1280, 1024, 1600, 1024, 1600, 1200, 1792, 1344, 1856, 1392, 1920, 1080);
function WBPixelCop(action) {
	if (PiCVersion()) {
		var screenWidth = parseInt(screen.width);
		var screenHeight = parseInt(screen.height);
		for (var i = 2; i < 50; i = i + 8) {
			if (action[i] > 0) {
				var matchWidth = action[i+1] != 7 ? PiCResArray[action[i+1]*2] : action[i+2];
				var matchHeight = action[i+1] != 7 ? PiCResArray[(action[i+1]*2)+1] : action[i+3];
				var match = eval("PiCRes" + action[i] + "(" + screenWidth + ", " + screenHeight + ", " + matchWidth + ", " + matchHeight + ")");
				if (match) {
					if (action[i+4] > 0) {
						if (action[1]) window.moveTo(0,0);
						if (action[i+4] == 1) {
							var newWidth = (action[i+5] <= screen.availWidth) ? action[i+5] : screen.availWidth;
							var newHeight = (action[i+6] <= screen.availHeight) ? action[i+6] : screen.availHeight;
						}
						else if (action[i+4] == 2) {
							var newWidth = (action[i+5]*screen.availWidth/100 <= screen.availWidth) ? Math.round(action[i+5]*screen.availWidth/100) : screen.availWidth;
							var newHeight = (action[i+6]*screen.availWidth/100 <= screen.availHeight) ? Math.round(action[i+6]*screen.availWidth/100) : screen.availHeight;
						}
						else if (action[i+4] == 3) {
							var newWidth = screen.availWidth;
							var newHeight = screen.availHeight;
						}
						newWidth = newWidth >= 100 ? newWidth : 100;
						newHeight = newHeight >= 100 ? newHeight : 100;
						if (PiCW3C || PiCisIE) {
							window.resizeTo(newWidth, newHeight);
						}
						else {
							window.outerWidth = newWidth;
							window.outerHeight = newHeight;
						}
					}
					if (action[i+7].indexOf("Reference!") == -1) {
						window.location.href = action[i+7];
					}
					return;
				}
			}
		}
	}
	return;
}
function PiCRes1(w, h, mw, mh) {
	var matchFlag = (w == mw && h == mh);
	return matchFlag;
}
function PiCRes2(w, h, mw, mh) {
	var matchFlag = (w > mw && h > mh);
	return matchFlag;
}
function PiCRes3(w, h, mw, mh) {
	var matchFlag = (w < mw && h < mh);
	return matchFlag;
}
function PiCRes4(w, h, mw, mh) {
	var matchFlag = (w >= mw && h >= mh);
	return matchFlag;
}
function PiCRes5(w, h, mw, mh) {
	var matchFlag = (w <= mw && h <= mh);
	return matchFlag;
}
function PiCVersion() {
	return true;
}
//
//-->



