
function WinOpen(urlPop,p_w,p_h,scroll)
{
  if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1) 
  {
	p_resize = "yes";
  }
  else
    p_resize = "no";

  p_x = (screen.width - p_w) / 2;
  p_y = ((screen.height - 45) - p_h) / 2;
  if (p_y < 0)
  	p_y = 0;
  win = window.open(urlPop, "","toolbar=no,left=" + p_x + ",top=" + p_y + ",width=" + p_w + ",height=" + p_h + ",directories=no,status=no,scrollbars="+scroll+",resizable=" + p_resize + ",menubar=no,location=no,copyhistory=no");
}

function WinOpenStatus(urlPop,p_w,p_h,scroll)
{
  if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1) 
  {
	p_resize = "yes";
  }
  else
    p_resize = "no";

  p_x = (screen.width - p_w) / 2;
  p_y = ((screen.height - 45) - p_h) / 2;
  if (p_y < 0)
  	p_y = 0;
  win = window.open(urlPop, "","toolbar=no,left=" + p_x + ",top=" + p_y + ",width=" + p_w + ",height=" + p_h + ",directories=no,status=yes,scrollbars="+scroll+",resizable=" + p_resize + ",menubar=no,location=no,copyhistory=no");
}


function PageOpen(Numero,p_w,p_h,scroll)
{
  if (navigator.appName && navigator.appName.indexOf("Microsoft") != -1 && navigator.userAgent.indexOf("Windows") != -1) 
  {
	p_resize = "yes";
  }
  else
    p_resize = "no";

  p_x = (screen.width - p_w) / 2;
  p_y = ((screen.height - 45) - p_h) / 2;
  if (p_y < 0)
  	p_y = 0;
  win = window.open("default.asp?Mp="+Numero, "","toolbar=no,left=" + p_x + ",top=" + p_y + ",width=" + p_w + ",height=" + p_h + ",directories=no,status=no,scrollbars="+scroll+",resizable=" + p_resize + ",menubar=no,location=no,copyhistory=no");
}


