// -- Adobe GoLive JavaScript Library
// -- Global Functions
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) {
	var s=si.toUpperCase();
	var myID=id.toUpperCase()+":";
	var id1=s.indexOf(myID);
	if (id1==-1) return "";
	s=s.substring(id1+myID.length+1,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");
		if (style.top=="") style.top=CSGetStyleAttrValue(si,"top");
		if (style.width=="") style.width=CSGetStyleAttrValue(si,"width");
		if (style.height=="") style.height=CSGetStyleAttrValue(si,"height");
		if (style.visibility=="") style.visibility=CSGetStyleAttrValue(si,"visibility");
		if (style.zIndex=="") style.zIndex=CSGetStyleAttrValue(si,"z-index");
	}
}
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()&&(CSAg.indexOf("Win")!=-1)&&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 (!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 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);
}
CSInit = new Array;
CSExit = new Array;
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;
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
}
// -- Action Functions
// StayPut.action v1.2.2 - May, 2002
// © Copyright 2002 by Walter Blady
// All rights reserved
var SPisIE4 = navigator.appVersion.indexOf("MSIE 4") >= 0;
var SPW3C = document.getElementById ? true : false;
var SPisIE = window.navigator.userAgent.indexOf("MSIE") >= 0;
var SPisWinIE5 = window.navigator.platform.indexOf("Win") >= 0 && window.navigator.userAgent.indexOf("MSIE") >= 0;
var SPobjArray = new Array();
var SPclientWidth, SPclientHeight, SPtopOffset, SPleftOffset, SPsuffix, SPcenterWidth, SPcenterHeight;
var SPsuffix = SPW3C ? "px" : "";
var W3CinitFlag = false;
if (SPW3C) var SPtop = "top", SPleft = "left", SPwidth = "width", SPheight = "height";
if (SPisIE4) var SPtop = "pixelTop", SPleft = "pixelLeft", SPwidth = "pixelWidth", SPheight = "pixelHeight";
function WBStayPut(action) {
	if (SPVersion()) {
		var clientWidth = SPisIE ? eval(document.body.clientWidth) : eval(window.innerWidth);
		var clientHeight = SPisIE ? eval(document.body.clientHeight) : eval(window.innerHeight);
		window.onresize = SPControl;
		if (SPisIE) {
			document.body.onscroll = SPControl;
		}
		else {
			window.onclick = SPControl;
		}
		if (!W3CinitFlag && SPW3C) {
			var d = document.getElementsByTagName("div");
			var s = document.getElementsByTagName("style");
			for (var i = 0; i < s.length; i++) {
				var html = (s[i].innerHTML);
				var start = html.indexOf("!--") + 3;
				var end = html.lastIndexOf("}") + 1 - start;
				html = html.indexOf("!--") > -1 ? html.substr(start, end) : html;
				html = html.replace(/^\s*/, "");
				html = html.replace(/:\s*#/g, ": ~");
				var styleArray = html.split(/ *}\S*/);
				for (var j = 0; j < styleArray.length; j++) {
					if (styleArray[j] != "" && styleArray[j].toLowerCase().indexOf("position:") > -1) {
						styleArray[j] = styleArray[j].replace(/\**#/, "");
						styleArray[j] = styleArray[j].replace(/~/g, "#");
						var styleName = styleArray[j].substr(0, styleArray[j].indexOf("{"));
						styleName = styleName.replace(/\s*/g, "");
						styleArray[j] = styleArray[j].toLowerCase();
						var t = eval("d." + styleName + ".style");
						var divName = eval("d." + styleName + ".id");
						var styleString = styleArray[j].replace(/^.*\{\s*/, "");
						styleString = styleString.replace(/\s*\}.*$|\s*\}.*\n.*$|\s*\}.*\r.*$/, "");
						var divArray = styleString.split(/\;\s*/g);
						for (var k = 0; k < divArray.length; k++) {
							var propertyName = divArray[k].substr(0, divArray[k].indexOf(":"));
							var dash = propertyName.indexOf("-");
							if (dash > -1) {
								var propertyName = propertyName.substr(0, dash) + propertyName.substr(dash + 1, 1).toUpperCase() + propertyName.substr(dash + 2, propertyName.length);
							}
							var propertyValue = divArray[k].substr(divArray[k].indexOf(":"), divArray[k].length);
							propertyValue = propertyValue.replace(/:*(-->)*}*\n*/g, "");
							propertyValue = propertyValue.replace(/^\s*|\s*$/, "");
							t.name = divName;
							t[propertyName] = propertyValue;
						}
					}
				}
			}
		W3CinitFlag = true;
		}
		for (var i = 1; i < 21; i = i + 4) {
			if (action[i] > 0) {
				params = SPgetObject(action[i+1])
				var width = SPW3C ? parseInt(params[SPwidth].replace(/\D/g, "")) : params[SPwidth];
				var height = SPW3C ? parseInt(params[SPheight].replace(/\D/g, "")) : params[SPheight];
				params.SPorigTop = SPW3C ? parseInt(params[SPtop].replace(/\D/g, "")) : params[SPtop];
				params.SPorigLeft = SPW3C ? parseInt(params[SPleft].replace(/\D/g, "")) : params[SPleft];
				params.SPorigRelaTop = Math.round(params.SPorigTop*100/clientWidth);
				params.SPorigRelaLeft = Math.round(params.SPorigLeft*100/clientHeight);
				params.SPorigStreWidth = Math.round(width*100/clientWidth);
				params.SPorigStreHeight = Math.round(height*100/clientHeight);
				params.SPstretchWidth = action[i+2];
				params.SPstretchHeight = action[i+3];
				params.SPstayPut = action[i] == 1 ? true : false;
				params.SPcenter = action[i] == 2 ? true : false;
				params.SPcenterPlus = action[i] == 3 ? true : false;
				params.SPstretch = action[i] == 4 ? true : false;
				if (params.SPcenter || params.SPcenterPlus) {
					if (action[i+2]) params[SPleft] = (clientWidth-width)/2 + SPsuffix;
					if (action[i+3]) params[SPtop] = (clientHeight-height)/2 + SPsuffix;
				}
				if (params.SPstretch) {
					if (action[i+2]) params[SPwidth] = clientWidth-params.SPorigRelaLeft + SPsuffix;
					if (action[i+3]) params[SPheight] = clientHeight-params.SPorigRelaTop + SPsuffix;
				}
				if (params.SPstayPut && SPW3C && !SPisWinIE5) params.position = "fixed";
				SPobjArray[SPobjArray.length] = params;
			}
		}		
	}
	return;
}
function SPControl() {
	for (var i = 0; i < SPobjArray.length; i++) {
		SPclientWidth = SPisIE ? eval(document.body.clientWidth) : eval(window.innerWidth);
		SPclientHeight = SPisIE ? eval(document.body.clientHeight) : eval(window.innerHeight);
		SPtopOffset = SPisIE ? document.body.scrollTop : window.pageYOffset;
		SPleftOffset = SPisIE ? document.body.scrollLeft : window.pageXOffset;
		if (SPobjArray[i].SPstayPut) { SPStayPut(i); }
		if (SPobjArray[i].SPcenter) { SPCenter(i); }
		if (SPobjArray[i].SPcenterPlus) { SPCenter(i); }
		if (SPobjArray[i].SPstretch){ SPStretch(i); }
	}
	return;
}
function SPStayPut(i) {
	if (SPisWinIE5 || !SPW3C) { 
		SPobjArray[i][SPtop] = SPtopOffset + SPobjArray[i].SPorigTop + SPsuffix;
		SPobjArray[i][SPleft] = SPleftOffset + SPobjArray[i].SPorigLeft + SPsuffix;
	}
	return;
}
function SPCenter(i) {
	var width = SPW3C ? parseInt(SPobjArray[i][SPwidth].replace(/\D/g, "")) : SPobjArray[i][SPwidth];
	var height = SPW3C ? parseInt(SPobjArray[i][SPheight].replace(/\D/g, "")) : SPobjArray[i][SPheight];
	SPcenterWidth = SPobjArray[i].SPcenterPlus ? SPleftOffset : 0;
	SPcenterHeight = SPobjArray[i].SPcenterPlus ? SPtopOffset : 0;
	if (SPobjArray[i].SPstretchWidth) SPobjArray[i][SPleft] = (Math.round(SPclientWidth-width)/2)+SPcenterWidth + SPsuffix;
	if (SPobjArray[i].SPstretchHeight) SPobjArray[i][SPtop] = (Math.round(SPclientHeight-height)/2)+SPcenterHeight + SPsuffix;
	return;
}
function SPStretch(i) { 
	var widthCorrection = SPisIE4 ? 30 : 0;
	if (SPobjArray[i].SPstretchWidth) SPobjArray[i][SPwidth] = SPclientWidth+widthCorrection+SPleftOffset-SPobjArray[i].SPorigRelaLeft + SPsuffix;
	if (SPobjArray[i].SPstretchHeight) SPobjArray[i][SPheight] = SPclientHeight+SPtopOffset-SPobjArray[i].SPorigRelaTop + SPsuffix;
	return;
}
function SPgetObject(objName) {
	var params;
	if (SPW3C) {
		params = eval('document.getElementById("' + objName + '").style');
	}
	else if (SPisIE4) {
		params = eval("document.all." + objName + ".style");
	}
	else {
		params = SPFindLayerObject(objName, 0);
	}
	return params;
}
function SPFindLayerObject(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 = SPFindLayerObject(layer, thisDocument.layers[i]); 
			if (layerObj) {
				break;
			}
		}
	}
	return layerObj;
}
function SPVersion() {
	return (navigator.appName.indexOf("Netscape") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 5)
          || (navigator.appName.indexOf("Explorer") >= 0 && parseInt(navigator.appVersion.charAt(0)) >= 4);
}
// OUT Move To Relative Position Library v 1.2.5
// Script copyright 2000, OUT Media Design GmbH. All rights reserved.
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 OUTcalcLyrRelPos(action)
{
	var x,y,w,h,ww,wh,lx,ly,xs,ys;
 	if (CSIsW3CDOM) {
 		CSIDOM();
		var lyr=document.getElementById(action[1]);
		x=parseInt(lyr.style.left); y=parseInt(lyr.style.top); w=parseInt(lyr.style.width); h=parseInt(lyr.style.height);
		xs=window.pageXOffset;ys=window.pageYOffset;
		ww=window.innerWidth; wh=window.innerHeight;
 	} else if (IsIE()) {
		var lyr=document.all.tags("div")[action[1]];
		x=lyr.offsetLeft; y=lyr.offsetTop; w=lyr.offsetWidth; h=lyr.offsetHeight;
		xs=document.body.scrollLeft;ys=document.body.scrollTop;
		ww=document.body.clientWidth; wh=document.body.clientHeight;
	} else {
		var lyr=CSNSStyl(action[1]);
		x=lyr.x; y=lyr.y; w=lyr.clip.width; h=lyr.clip.height;
		xs=window.pageXOffset;ys=window.pageYOffset;
		ww=window.innerWidth; wh=window.innerHeight;
	}
	var newX=x;
	var newY=y;
	lx = 0; ly = 0;
	if (action[2]==2) lx=Math.floor(w/2);
	if (action[2]==3) lx=w;
	if (action[3]==2) ly=Math.floor(h/2);
	if (action[3]==3) ly=h;
	if (action[2]) lx-=action[4];
	if (action[3]) ly-=action[5];
	if (action[6]==1) newX=action[8];
	if (action[6]==2) newX=ww/2;
	if (action[6]==3) newX=ww;
	if (action[7]==1) newY=action[9];
	if (action[7]==2) newY=wh/2;
	if (action[7]==3) newY=wh;
	if (action[6]) newX = OUTsnapPosToGrid(newX+xs,action[11],action[13],action[8]+xs-(action[10]?action[4]:0),ww+xs-action[8]-(action[10]?action[4]:0));
	if (action[7]) newY = OUTsnapPosToGrid(newY+ys,action[12],action[14],action[9]+ys-(action[10]?action[5]:0),wh+ys-action[9]-(action[10]?action[5]:0));
	return Array(newX-lx,newY-ly);
}
function OUTrelPosMod(x,y){return x-y*Math.floor(x/y);}
function OUTsnapPosToGrid(pos,grid,offset,min,max)
{
	pos = (min<max)?(pos>min?(pos<max?pos:max):min):pos;
	if (!grid) return pos;
	var newPos  = Math.floor((pos-offset)/grid)*grid;
	newPos += Math.round(OUTrelPosMod(pos-offset,grid)/grid)==1 ? grid : 0;
	newPos += offset;
	newPos = newPos >= min ? newPos : newPos+grid;
	newPos = newPos <= max ? newPos : newPos-grid;
	return newPos;
}
// OUT Move To Relative Position Action v 1.0
// Script copyright 2000, OUT Media Design GmbH. All rights reserved.
function OUTmoveToRelPos(action)
{
	CSSlideLayer(action[1],OUTcalcLyrRelPos(action),action[15],action[16]);
}
// OUT Call Action OnScroll Action Library 1.0
// Script copyright 2001, OUT Media Design GmbH. All rights reserved.
var OUTactsOnScroll = new Array();
function OUTcallActionOnScroll(action)
{
	for(var i=1;i<action.length;i++) { OUTactsOnScroll[OUTactsOnScroll.length]=action[i]; }
	window.onscroll=OUTexecScrollActions;
	if (!IsIE()) {window.captureScrollEvent=OUTcaptureScrollEvent;window.OUTlastScrollX=0;window.OUTlastScrollY=0;setInterval(window.captureScrollEvent,10);}      
}
function OUTexecScrollActions() {
	for (var i=0;i<OUTactsOnScroll.length;i++) CSAction(new Array(OUTactsOnScroll[i]));
}
function OUTcaptureScrollEvent() {
	if (this.OUTlastScrollX!=window.pageXOffset||this.OUTlastScrollY!=window.pageYOffset) {
		this.onscroll();
	}
	this.OUTlastScrollX = window.pageXOffset;
	this.OUTlastScrollY = window.pageYOffset;
}
// EOF
