// JavaScript Document

function newWindow(a_str_windowURL, a_str_windowName, a_int_windowWidth, a_int_windowHeight)
{
  var int_windowLeft = (screen.width - a_int_windowWidth) / 2;
  var int_windowTop = (screen.height - a_int_windowHeight) / 2;
  var str_windowProperties='height='+a_int_windowHeight+',width='+a_int_windowWidth+',top='+int_windowTop+',left='+ int_windowLeft+',scrollbars=yes,resizable=yes,menubar=no,toolbar=no,location=no,directories= no,status=no,fullscreen=no,dependent=yes,channelmode=no';
  
  var obj_window = window.open(a_str_windowURL, a_str_windowName, str_windowProperties)
   // if (parseInt(navigator.appVersion) >= 4) {
   //   obj_window.window.focus();
   // }
}

function popup(url)
{
window.open('url','window','width=600,height=400,resizable=no');
}