// JavaScript Document
function newWindow(url, width, height) {
if((!newWin) || (newWin.closed == true)) { 
var newWin = window.open(url,"newWindow",'width=' + width +
',height=' + height + ',resizable=yes,scrollbars=yes,menubar=yes,toolbar=yes,directories=no,location=yes,status=no');
newWin.focus(); 
} 
else { 
newWin.location.href = url; 
newWin.focus(); 
} 
} 