//Popup.js
//allow popup windows to work in cruddy IE
//

function mmPopUp(szurl, iw, ih, sztbar, szloc, szstatus, szmbar, szscroll, szresize, ix, iy) 
{
  var szcommands = "location=" + szloc + ",scrollbars=" + szscroll + ",status=" + szstatus + ",toolbar=" 
  szcommands += sztbar + ",resizable=" + szresize + ",menubar=" + szmbar + ",width=" + iw + ",height=" 
  szcommands += "" + ih + ",screenX=" + ix + ",screenY=" + iy + ",top=" + ix + ",left=" + iy + "";
  //alert(szcommands)
  window.open(szurl, '_blank', szcommands);
  return;
}
