/*
    
    Date: 3/15/03	

    This Code and Idea is Copyright 2003 SonnySales.com
    GetThatMenu.com is a division of SonnySales.com. By no means
    may this code or idea be implemented without written authority
    by SonnySales or its divisions.

*/


// open new window
function NewWindow(mypage, myname, w, h, scroll) {
var winl = (screen.width - w) / 2;
var wint = (screen.height - h) / 2;
winprops = 

'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable'
win = window.open(mypage, myname, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}