/*
  $Id: popup_window.js,v 1.0 2006/01/23 $

  Copyright (c) 2006 http://www.elarboldelavida.net
*/
//---------------------------------------------
function popupWindow(url, x, y) {
  var xx=110;
  var yy=110;
  if (typeof (x) != 'undefined') xx=x; 	
  if (typeof (y) != 'undefined') yy=y; 	
  window.open(url,'popupWindow','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no,copyhistory=no,width=50,height=50,screenX='+xx+',screenY='+yy+',top='+xx+',left='+yy)
}
//---------------------------------------------
