<!--// JavaScript Document
function popup(strURL, x, y)
{
  var winleft = (screen.width - x) / 2;
  var winUp = (screen.height - y) / 2;
  var strAttr = "scrollbars=yes,width=" + x + ",height=" + y + ",resizable=yes,toolbar=no,location=no,directories=no,status=no,menubar=no,copyhistory=no,left="+winleft+",top="+winUp+"";
  var popupref = window.open(strURL, "", strAttr);
}
//-->