
function newWindow(url,popW,popH,scroll,status) {
   var w = 640, h = 480;
   if (document.all || document.layers) {
      w = screen.availWidth;
      h = screen.availHeight;
   }
   var leftPos = (w-popW)/2, topPos = (h-popH)/2;
      hwnd = window.open(url,'popup','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,toolbar=no,resizable=no,menubar=no,scrollbars=' + scroll + ',status=' + status);
      greekfont(hwnd);
}

function pWindow(url,popW,popH,scroll,status) {
   var w = 640, h = 480;
   if (document.all || document.layers) {
      w = screen.availWidth;
      h = screen.availHeight;
   }
   var leftPos = (w-popW)/2, topPos = (h-popH)/2;
      hwnd = window.open(url,'popup','width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',directories=no,toolbar=no,resizable=no,menubar=no,scrollbars=' + scroll + ',status=' + status);
}

function combineAddress(prefix) {
   window.location='mailto:' + prefix + '@nicoc.org';
}

function greekfont(hwnd) {
hwnd.document.write("<HTML><HEAD><style>TD {font-family:Arial, Verdana, Helvetica, sans-serif;font-size:11px}</style></HEAD><BODY>" +
               "<table cellpadding = 5 cellspacing = 0 border = 0 bgcolor = #ffffff>" +
               "<tr><td>" + 
               "<b>How to download the Greek font (58KB file).</b>" +
               "</td></tr>" +
	         "<tr><td>" +
               "&#149; <i>Right-click</i> (!) <a href = 'http://www.nicoc.org/bwgrkl.ttf'>here</a> and select 'Save Target As...'" +
               "</td></tr>" +
	         "<tr><td>" +
               "&#149; Choose the directory where you want to save the font and click on 'Save' to download the file." +
               "</td></tr>" +
               "<tr><td>" +
               "<b>How to install the font on your Windows system.</b>" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149;  Click on START" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149; Click on SETTINGS" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149; Click on CONTROL PANEL" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149; Double click on FONTS" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149; Click on the FILE pulldown menu on the top" +
	         "</td></tr>" +
               "<tr><td>" +
               "&#149; Click on INSTALL NEW FONT" +
	         "</td></tr>" +
	         "<tr><td>" +
               "&#149; Locate the Bwgrkl.ttf file and click OK to install." +
	         "</td></tr>" +
	         "<tr><td>" +
               "&#149; You may need to restart before the font will display." +
	         "</td></tr>" +
               "</table>" +
               "</body></html>");
}


