<!--

<!-- Begin
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = ((screen.height - h) / 2) - 50;
winprops = 'toolbar=1,location=1,directories=1,status=1,menubar=1,scrollbars=1,resizable=1,width='+w+',height='+h+',top='+wint+',left='+winl+''
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  onclick="NewWindow(this.href,'name','600','600','yes');return false;"
//  End -->
//-->
<!--

<!-- Begin
function NewWindow2(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = ((screen.height - h) / 2) - 50;
winprops = 'toolbar=0,location=0,directories=0,status=0,menubar=0,scrollbars=1,resizable=1,width='+w+',height='+h+',top='+wint+',left='+winl+''
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
//  End -->
//-->

<!-- Begin
function printWindow() {
IE = parseInt(navigator.appVersion);
if (IE >= 4) window.print();
else alert("Sorry, your browser cannot print this page.");
}
//  End -->