
/* POSITIONED POPUP WINDOW */
/* URL NAME WIDTH HEIGHT TOP LEFT SCROLLBARS RESIZABLE  */

function popup(url, name, w, h, t, l, s, r) {
winprops = 'height='+h+',width='+w+',top='+t+',left='+l+',toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=='+s+',resizable=='+r+''
win = window.open(url, name, winprops)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}


