function N(r,o)
{
	n(r,o)
}
function n(r,o)
{
	var b;

	ancho = 500;
	alto = 500;
	var str = "height=" + alto + ",innerHeight=" + alto;
	str += ",width=" + ancho + ",innerWidth=" + ancho;
	if (window.screen) {
		var ah = screen.availHeight - 30;
		var aw = screen.availWidth - 10;
		var xc = (aw - ancho) / 2;
		var yc = (ah - alto) / 2;
		str += ",left=" + xc + ",screenX=" + xc;
		str += ",top=" + yc + ",screenY=" + yc;
	}
	b = window.open("/v2/npop.asp?r="+r+"&o="+o + "&or=" + _or + "&h=" + _h, "", "width="+ancho+",height="+alto+",location=yes,toolbar=no,status=no,scrollbars=yes,resizable=yes,"+str);
	b.focus();
}