<!--
function CSAction(array) { 
	var result;
	for (var i=0;i<array.length;i++) {
		result = CSAct[array[i]][0](CSAct[array[i]]); 
	}
	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['01'] = new Array(CSOpenWindow,/*URL*/ '01.html','01',500,500,true,true,false,false,false,false);

CSAct['02'] = new Array(CSOpenWindow,/*URL*/ '02.html','02',500 ,500,true,false,false,false,false,false);

CSAct['03'] = new Array(CSOpenWindow,/*URL*/ '03.html','03',500 ,500,true,false,false,false,false,false);

CSAct['04'] = new Array(CSOpenWindow,/*URL*/ '04.html','04',500 ,500,true,false,false,false,false,false);

CSAct['05'] = new Array(CSOpenWindow,/*URL*/ '05.html','05',500 ,500,true,false,false,false,false,false);

CSAct['06'] = new Array(CSOpenWindow,/*URL*/ '06.html','06',500 ,500,true,false,false,false,false,false);

CSAct['07'] = new Array(CSOpenWindow,/*URL*/ '07.html','07',500 ,500,true,false,false,false,false,false);

CSAct['08'] = new Array(CSOpenWindow,/*URL*/ '08.html','08',500 ,500,true,false,false,false,false,false);

CSAct['09'] = new Array(CSOpenWindow,/*URL*/ '09.html','09',500 ,500,true,false,false,false,false,false);

CSAct['10'] = new Array(CSOpenWindow,/*URL*/ '10.html','10',500 ,500,true,false,false,false,false,false);




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
}

-->