﻿// JScript File
var PolicyWindow=null;

function ShowPrivacy(serverPath) { 
   var divWidth=940;
   var divHeight=600;
      if (PolicyWindow!=null && !PolicyWindow.closed) {
      PolicyWindow.close();
   }
   
   var WinLeft=Math.floor((screen.width-divWidth)/2);
   var WinTop=Math.floor((screen.height-divHeight)/2) - 30;
   var WinAppearence;
   
   WinAppearence = 'scrollbars=yes, toolbar=no, resizable=no, menubar=no, status=no, width='+(divWidth)+',height='+(divHeight)+',top='+WinTop+',left='+WinLeft;
   
   PolicyWindow=window.open(serverPath,'PolicyWindow',WinAppearence);
//   NewWindow.document.writeln(Hypertext);
   PolicyWindow.focus();
}



