function openWin(path,name,width,height,scroll,resize,status) {
	var winL = 0;
	var winT = 0;
	var offH = 0;

	if (navigator.appVersion.indexOf("Mac") != -1) {
		offH = 20;
	} else if (navigator.appVersion.indexOf("Win") != -1) {
		offH = 30;
	}

	if (screen.width && screen.height) {
		winL = parseInt((screen.width/2) - (width/2));
		winT = parseInt((screen.height/2) - (height/2) - offH);
	}

	threatWin = window.open(path,'FMTM' + name,'width=' + width + ',height=' + height + ',left=' + winL + ',top=' + winT + ',location=0,titlebar=0,toolbar=0,menubar=0,directories=0,personalbar=0,status=' + status + ',resizable=' + resize + ',scrollbars=' + scroll);
}
