// JavaScript - popup

function JSpopup(targetURL){
   var WindowObjectReference = null; 
   
   WindowObjectReference = window.open (targetURL, "popupwindow", "location=no, status=no, resizable=0, width=370, height=420");
   WindowObjectReference.focus();
   WindowObjectReference.moveTo(0,0);
}