<!--
function initArray() {
 for (var i = 0; i < initArray.arguments.length; i++)
  this[i] = initArray.arguments[i];
 this.length = initArray.arguments.length;
}
var chrome = new initArray(
 "menubar",
 "menubar,toolbar",
 "menubar,status,resizable,scrollbars",
 "resizable,scrollbars",
 "scrollbars",
 "");
var popUpWin = '';
var describeIt = '';
var picture = '';
var winFeatures = '';
function PopUp(pic,high,wide,text,features) {
 var tall = high + 0
 var side = wide + 0
 describeIt = text
 picture = pic
 winFeatures = features
if (popUpWin && !popUpWin.closed) {
  popUpWin.close();
 }
   popUpWin = eval("window.open('"+picture+"','newWin','"+chrome[winFeatures]+",height="+tall+",width="+side+"')");
   if (!popUpWin.opener) popUpWin.opener = self;
}
// -->

<!-- 
function printWindow(){
   bV = parseInt(navigator.appVersion)
   if (bV >= 4) window.print()
}
// -->