﻿<!--
var d = document;

function ShowHide(strID)
{
  var obj = d.getElementById(strID);
  obj.className = (obj.className == 'hidden' ? 'visible' : 'hidden');
}

function NewPopUp(strURL, strNAME)
{
  window.open(strURL, 'win' + strNAME, 'height=450,menubar=1,resizable=0,screenX=30,screenY=30,scrollbars=1,status=1,toolbar=1,width=700');
}

function OPNPGE(strURL)
{
  window.opener.location = strURL;
  window.close();
}
-->