<!--
function openPopup(url, name,width,height)
{
   var l = Math.floor((screen.width-width)/2);
   var t = Math.floor((screen.height-height)/2);
   win = window.open(url,name,"toolbar=no, status=no, statusbar=no, menubar=no,  scrollbars=yes,width=" + width + ",height=" + height + ",top=" + t + ",left=" + l);
   win.window.focus();
}
// -->

