//<--





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);}





CSAg = window.navigator.userAgent; CSBVers = parseInt(CSAg.charAt(CSAg.indexOf("/")+1),10);





function IsIE() { return CSAg.indexOf("MSIE") > 0;}





function CSIEStyl(s) { return document.all.tags("div")[s].style; }





function CSNSStyl(s) { return CSFindElement(s,0); }





function CSFindElement(n,ly) { if (CSBVers < 4) return document[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 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 () {





	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 false; // follow link





	else return true; // follow link





}











CSIm = new Object();





function CSIShow(n,i) {





	if (document.images) {





		if (CSIm[n]) {





			var img = (!IsIE()) ? CSFindElement(n,0) : document[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];





	}





}





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 actArray = fct[array[i]];





		if(actArray == null) return false; 





		var tempArray = new Array;





		for(var j=1;j<actArray.length;j++) {





			if((actArray[j] != null) && (typeof(actArray[j]) == "object") && (actArray[j].length == 2)) {





				if(actArray[j][0] == "VAR") {





					tempArray[j] = CSStateArray[actArray[j][1]];





				}





				else {





					if(actArray[j][0] == "ACT") {





						tempArray[j] = CSAction(new Array(new String(actArray[j][1])));





					}





				else





					tempArray[j] = actArray[j];





				}





			}





			else





				tempArray[j] = actArray[j];





		}			





		result = actArray[0](tempArray);





	}





	return result;





}





CSAct = new Object;











function CSOpenWindow(action) {











	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");











	window.open(action[1],action[2],wf);











}





function CSFindElement(n,ly) { if (CSBVers < 4) return document[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 CSSetStyleVis(s,v) { if (IsIE()) CSIEStyl(s).visibility = (v == 0) ? "hidden" : "visible";





	else CSNSStyl(s).visibility = (v == 0) ? 'hide' : 'show'; }





function CSGetStyleVis(s) { if (IsIE()) return (CSIEStyl(s).visibility == "hidden") ? 0 : 1;





	else return (CSNSStyl(s).visibility == 'hide') ? 0 : 1;}





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 CSFixFct() {
	var d = document; var w = window;
	if (d.cs.csFix.w != w.innerWidth || d.cs.csFix.h != w.innerHeight) {
		d.location = d.location; }
}
function CSNSFix(action) {
	var d = document; var w = window;
	if ((navigator.appName == 'Netscape') && (parseInt(navigator.appVersion) == 4)) {
		if (typeof d.cs == 'undefined') {
			d.cs = new Object;
			d.cs.csFix = new Object;
		} else if (CSIsFrame (w) == true) CSFixFct();
		d.cs.csFix.w = w.innerWidth;
		d.cs.csFix.h = w.innerHeight;
		window.onresize = CSFixFct;
	  }
}
function CSIsFrame (window) {
	var rootWindow = window.parent;
	if (rootWindow == 'undefined') return false;
	for (i = 0; i < rootWindow.frames.length; i++)
		if (window == rootWindow.frames[i]) return true;
	return false;
}

function CSActionGroup (action) {
	for(var i=1;i<action.length;i++) { CSAction(new Array(action[i])); }
}

CSImages=new Array();
function CSPreloadImage(action) {
	if (document.images) { CSImages[CSImages.length]=new Image(); CSImages[CSImages.length-1].src=action[1]; }
}

function CSStopScene(action) { CSStopFunction (action[1]); }
if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=5) {
	leftH = ".left";
	topV = ".top";
	nndoc = "document.getElementById(layername).style";
	iestyle = "";
	offsetH = "window.pageXOffset";
	offsetV = "window.pageYOffset";
	} 
	
	else if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=4) {
	leftH = ".left";
	topV = ".top";
	nndoc = "document.";
	iestyle = "";
	offsetH = "window.pageXOffset";
	offsetV = "window.pageYOffset";	
	} 
	
	else if (navigator.appName == "Microsoft Internet Explorer") {
	leftH = ".pixelLeft";
	topV = ".pixelTop";
	nndoc = "";
	iestyle = "document.getElementById(layername).style";
	offsetH = "document.body.scrollLeft";
	offsetV = "document.body.scrollTop";
	}
function getnewPos() {
var currentH = eval(offsetH);
var currentV = eval(offsetV);
x = parseInt(currentH) + parseInt(xpos);
y = parseInt(currentV) + parseInt(ypos);
moveLayer();
setTimeout("getnewPos()",10)
}

function CSFloatLayer(action) {
layername = action[1];
ypos = action[2];
xpos = action[3];
if (navigator.appVersion.charAt(0) >=5 || navigator.appName == "Microsoft Internet Explorer") {
	leftPos = eval(nndoc + iestyle + leftH);
	topPos = eval(nndoc + iestyle + topV);
	} else {
	leftPos = eval(nndoc + layername + iestyle + leftH);
	topPos = eval(nndoc + layername + iestyle + topV);
	}
	getnewPos()
	}
function moveLayer() {
if (navigator.appVersion.charAt(0) >=5  || navigator.appName == "Microsoft Internet Explorer") {
	eval(nndoc + iestyle + topV + "=" + y);
	eval(nndoc + iestyle + leftH + "=" + x);
	} else {
	eval(nndoc + layername + iestyle + topV + "=" + y);
	eval(nndoc + layername + iestyle + leftH + "=" + x);
	}
}

function CSStopScene(action) { CSStopFunction (action[1]); }
if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=5) {
	leftH = ".left";
	topV = ".top";
	nndoc = "document.getElementById(layername).style";
	iestyle = "";
	offsetH = "window.pageXOffset";
	offsetV = "window.pageYOffset";
	} 
	
	else if (navigator.appName == "Netscape" && navigator.appVersion.charAt(0) >=4) {
	leftH = ".left";
	topV = ".top";
	nndoc = "document.";
	iestyle = "";
	offsetH = "window.pageXOffset";
	offsetV = "window.pageYOffset";	
	} 
	
	else if (navigator.appName == "Microsoft Internet Explorer") {
	leftH = ".pixelLeft";
	topV = ".pixelTop";
	nndoc = "";
	iestyle = "document.getElementById(layername).style";
	offsetH = "document.body.scrollLeft";
	offsetV = "document.body.scrollTop";
	}
function getnewPos() {
var currentH = eval(offsetH);
var currentV = eval(offsetV);
x = parseInt(currentH) + parseInt(xpos);
y = parseInt(currentV) + parseInt(ypos);
moveLayer();
setTimeout("getnewPos()",10)
}
function CSFloatLayer(action) {
layername = action[1];
ypos = action[2];
xpos = action[3];
if (navigator.appVersion.charAt(0) >=5 || navigator.appName == "Microsoft Internet Explorer") {
	leftPos = eval(nndoc + iestyle + leftH);
	topPos = eval(nndoc + iestyle + topV);
	} else {
	leftPos = eval(nndoc + layername + iestyle + leftH);
	topPos = eval(nndoc + layername + iestyle + topV);
	}
	getnewPos()
	}
function moveLayer() {
if (navigator.appVersion.charAt(0) >=5  || navigator.appName == "Microsoft Internet Explorer") {
	eval(nndoc + iestyle + topV + "=" + y);
	eval(nndoc + iestyle + leftH + "=" + x);
	} else {
	eval(nndoc + layername + iestyle + topV + "=" + y);
	eval(nndoc + layername + iestyle + leftH + "=" + x);
	}
}








// -->