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
}
CSSmiddleExecution = false;

function CSAction(array) { 
return CSAction2(CSAct, array);
}
function CSAction2(fct, array) { 
var result;
for (var i=0;i<array.length;i++) {
if(CSSmiddleExecution) return false; 
var actArray = fct[array[i]];
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);
}

CSAct[/*CMP*/ 'B5640DA91'] = new Array(CSOpenWindow,/*URL*/ 'corvee.html','',750,650,false,true,false,false,false,false,false);

if (document.images) {
	 var bac_on = new Image();
        var bac_off = new Image();
        bac_on.src = 'images/bac_on.jpg';
        bac_off.src = 'images/bac_off.jpg'; 	

	var bch_on = new Image();
        var bch_off = new Image();
        bch_on.src = 'images/bch_on.jpg';
        bch_off.src = 'images/bch_off.jpg'; 

	var bfo_on = new Image();
        var bfo_off = new Image();
        bfo_on.src = 'images/bfo_on.jpg';
        bfo_off.src = 'images/bfo_off.jpg'; 

	var bfr_on = new Image();
        var bfr_off = new Image();
        bfr_on.src = 'images/bfr_on.jpg';
        bfr_off.src = 'images/bfr_off.jpg'; 	

	var bdo_on = new Image();
        var bdo_off = new Image();
        bdo_on.src = 'images/bdo_on.jpg';
        bdo_off.src = 'images/bdo_off.jpg';

	var bli_on = new Image();
        var bli_off = new Image();
        bli_on.src = 'images/bli_on.jpg';
        bli_off.src = 'images/bli_off.jpg';
        
        var bblog_on = new Image();
        var bblog_off = new Image();
        bblog_on.src = 'images/bblog_on.jpg';
        bblog_off.src = 'images/bblog_off.jpg'; 
		
		var btn_forum_on = new Image();
        var btn_forum_off = new Image();
        btn_forum_on.src = 'images/btn_forum_on.jpg';
       btn_forum_off.src = 'images/btn_forum_off.jpg'; 

	 var bco_on = new Image();
        var bco_off = new Image();
        bco_on.src = 'images/bco_on.jpg';
        bco_off.src = 'images/bco_off.jpg'; 	}

	function On(imgName) { if (document.images)
{ document.images[imgName].src = eval(imgName + "_on.src"); } }
        
function Off(imgName) { if (document.images)
{ document.images[imgName].src = eval(imgName + "_off.src"); } }	