function wopen(url)
{
//adds 32 to w and 96 to h as fudgefactors...
var win = window.open(url,'name','width=842, height=496, status=yes, location=no, menubar=yes, scrollbars=no, resizable=yes');
win.resizeTo(833,560);
win.focus();
}
