/**
 * File: popawindow.js
 * By: TL Smoot(tlsmoot@ematic.com)
 *     Brian French(bfrench@ematic.com)
 *     Cliff Lang(cliffl@ematic.com)
 *
 * Copyright 1999-2001
 * AardVark Internet Publishing : WA.
 * All rights reserved
 *
 */

// Window Opener Function
self.name = "myWindow";
function openWindow(url, name, specs) {
   popupWin = window.open(url, name, specs);
      if (!popupWin.opener) {
         popupWin.opener = self;
      }
}

// SSL Cert Display Function
function OpenCertDetails() {
	thewindow = window.open('https://www.thawte.com/cgi/server/certdetails.exe?code=USINFO141', 'certDetails', config='height=400,width=450,toolbar=no,menubar=no,scrollbars=yes,resizable=no,location=no,directories=no,status=yes');
}

// Date Function
function writeTheDate() {
	thisMonth = new Date();
	document.write("<font face=\"Arial, Helvetica, sans-serif\" size=\"-1\"><strong>");
	document.write((thisMonth.getMonth()+1) + "-" + thisMonth.getDate() + "-" + thisMonth.getFullYear());
	document.write("</strong></font>");
}

