function popup(sURL, iWidth, iHeight, iX, iY) {
  mywindow = window.open ("" + sURL + "", "mywindow","location=1,status=1,scrollbars=1, width=" + iWidth + ",height=" + iHeight + "");
  mywindow.moveTo(iX,iY);
} 