 var NS4 = document.layers;
                                if (NS4) {
                                   origWidth = innerWidth;
                                   origHeight = innerHeight;
                                }

function reDo() {
                                if (innerWidth != origWidth || innerHeight != origHeight)
                                   location.reload();
                             }

                             if (NS4) onresize = reDo;

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
}


var 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;
}
var CSAct = new Object;

function CSResizeWindow(action) { 
	window.moveTo(0, 0)
		if(navigator.appVersion.charAt(0) >=4) { window.resizeTo (action[1],action[2]) }
}

function window_onload(){
		window.moveTo(0, 0)
			window.resizeTo((screen.width*0.9)-40, (screen.height*0.9)-10);
}

CSAct[/*CMP*/ 'B6D563884'] = new Array(CSResizeWindow,610,480);
CSAct[/*CMP*/ 'B6D563AB5'] = new Array(CSResizeWindow,(screen.width *0.9)-40,(screen.height *0.9)-10,screenX=0,screenY=0,x=0,y=0);
