var isMac = (navigator.platform.indexOf("Mac") != -1);
var isIE = (navigator.userAgent.indexOf("MSIE") != -1);
var isIE4 = (isIE && (navigator.appVersion.indexOf("MSIE 4") != -1));

function launch() {
	LeftPosition=(screen.width)?(screen.width-680)/2:100;TopPosition=(screen.height)?(screen.height-370)/2:100;
	settings='width=680,height=370,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	newWin = window.open('/life/popup/morefacts.html', 'newWin', settings);
 }
 
function popupFactFile(fileName) {
	LeftPosition=(screen.width)?(screen.width-680)/2:100;TopPosition=(screen.height)?(screen.height-370)/2:100;
	settings='width=680,height=370,top='+TopPosition+',left='+LeftPosition+',scrollbars=no,location=no,directories=no,status=no,menubar=no,toolbar=no,resizable=no';
	factFile = '/life/images/ingeneious/factfiles/' + fileName + '.swf'
	factWin = window.open(factFile, 'factWin', settings);
}