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