﻿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; /* follow link */
	else return false; /* dont follow link */
}
function CSOpenWindow(action) {
	var wf = "";	
	wf = wf + "width=" + action[2];
	wf = wf + ",height=" + action[3];
	wf = wf + ",resizable=" + (action[4] ? "yes" : "no");
	wf = wf + ",scrollbars=" + (action[5] ? "yes" : "no");
	wf = wf + ",menubar=" + (action[6] ? "yes" : "no");
	wf = wf + ",toolbar=" + (action[7] ? "yes" : "no");
	wf = wf + ",directories=" + (action[8] ? "yes" : "no");
	wf = wf + ",location=" + (action[9] ? "yes" : "no");
	wf = wf + ",status=" + (action[10] ? "yes" : "no");		
	window.open(action[0],action[1],wf);
}
