function AbrirPopUp(url, nombre, location, menubar, toolbar, status, resizable, scrollbars, top, left, width, height)
{
	var hWndLinkExterno = window.open(url, nombre, "location=" + location + ",menubar=" + menubar + ",toolbar=" + toolbar + ",status=" + status + ",resizable=" + resizable + ",scrollbars=" + scrollbars + ",top=" + top + ",left=" + left + ",width=" + width + ",height=" + height + "");
	if ((document.window != null) && (!hWndLinkExterno.opener))
		hWndLinkExterno.opener = document.window;
}
