// JavaScript Document
<!-- Begin
function TourWindow(mypage, myname, scroll) {
var w = 700;
var h = 740;
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='+scroll+',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 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='+scroll+',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 -->