// JavaScript Document

function new_window(link, name, w, h, scroll, resize) 
{
var winLeft = (screen.width - w) / 2;
var winTop = (screen.height - h) / 2;
winProps = 'height='+h+',width='+w+',top='+winTop+',left='+winLeft+',scrollbars='+scroll+',resizable='+resize+''
win = window.open(link,"",winProps)
if (parseInt(navigator.appVersion) >= 4) { win.window.focus(); }
}
// 