/* 

	New window script 

*/

function wopen(url, name, w, h)
{
// Fudge factors for window decoration space.
w += 10;
h += 10;
 var win = window.open(url,
  name,
  'width=' + w + ', height=' + h + ', ' +
  'location=yes, menubar=yes, ' +
  'status=yes, toolbar=yes, scrollbars=yes, resizable=yes');
 win.resizeTo(w, h);
 win.focus();
}
