function NewWindow(page) { 
OpenWin = this.open(page, "", 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width=640,height=450'); 
} 

function privacy() { 
var iMyWidth; var iMyHeight; iMyWidth = (window.screen.width/2) - (225 + 10); 
//half the screen width minus half the new window width (this window is 500pixels wide plus 5 pixel borders). 
iMyHeight = (window.screen.height/2) - (150 + 50); 
//half the screen height minus half the new window height (this window is 250 pixels high plus title and status bars). 
var hlpWin = window.open("privacy.htm","PrivacyStatement","status=no, height=450, width=550, resizable=yes ,left=" + iMyWidth + ",top=" + iMyHeight + ",screenX=" + iMyWidth + ",screenY=" + iMyHeight + ",scrollbars=yes"); 
hlpWin.focus(); 
} 

var flashinstalled = 0; 
var flashversion = 0; 
MSDetect = "false"; 
if (navigator.plugins && navigator.plugins.length) { x = navigator.plugins["Shockwave Flash"]; 
if (x) { flashinstalled = 2; 
if (x.description) { y = x.description; flashversion = y.charAt(y.indexOf('.')-1); } } 
else flashinstalled = 1; 
if (navigator.plugins["Shockwave Flash 2.0"]) { flashinstalled = 2; flashversion = 2; } } 
else if (navigator.mimeTypes && navigator.mimeTypes.length) { 
x = navigator.mimeTypes['application/x-shockwave-flash']; 
if (x && x.enabledPlugin) flashinstalled = 2; 
else flashinstalled = 1; 
} 
else MSDetect = "true";

function MM_openBrWindow(theURL,winName,features) { //v2.0 
window.open(theURL,winName,features); 
} 
function MM_goToURL() { //v3.0 
var i, args=MM_goToURL.arguments; 
document.MM_returnValue = false; 
for (i=0; 
i<(args.length-1); 
i+=2) eval(args[i]+".location='"+args[i+1]+"'"); 
} 

