//Original:  Eric King (eric_andrew_king@hotmail.com) -->
//Web Site:  http://redrival.com/eak/ -->

function NewWindow(mypage, myname, w, h, scroll, menubar, toolbar, location) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',menubar,toolbar,location,resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}

//function openWindow() {
//  popupWin = window.open('company/index.html', 'remote','menubar,toolbar,location,directories,status,scrollbars,resizable,dependent,width=800,height=600')
//}

//Modified on 081402 by Mark D. Taylor
//Use <A HREF="LINK+TO+PAGE.html" onclick="NewWindow(this.href,'name','400','400','yes');return false;">CLICK HERE</A>
//Replace '400','400' with window size
