<!--
function makewin (targurl, width, height, winopts) {
 /* Create the new window and update the sidebars array object */
var tempref = window.open(targurl,'popup','top=50,left=100,toolbar=no,width=' + width + ',height=' + height + ',' + winopts);
tempref.focus();
}
// -->

