<!--
function cpe(agentid,poptype)
   {
   var twidth
   var theight
   var xurl="http://www.icommissions.com/iserver/cpland2.php?a="+agentid
   var wintitle = "Pop"
   var winName

   twidth=720
   theight=600
  var winValues = "scrollbars=yes,toolbar=no,location=no,toobar=no,menubar=no,width=" + twidth + ",height=" + theight + ",left=50,top=50";
  winName = window.open(xurl,wintitle,winValues);

  switch (poptype)
      {
      case "1":
         winName.blur();
         window.focus();
         break;
      }
   }
//-->

