// VARIABLES ////////////////////////////////////////////////////////////////////////////////////////

var windowId = "";

// FUNCIONS /////////////////////////////////////////////////////////////////////////////////////////

function initWinParams (winWidth, winHeight, isResizable, isScrollable) {
	xDist = parseInt ((screen.width - winWidth) /2);
	yDist = parseInt ((screen.height - winHeight) /2);
	winCfg = "width="+winWidth+",height="+winHeight+",left="+xDist+",top="+yDist+",resizable="+isResizable+",scrollbars="+isScrollable+",directories=no,dependent=no,alwaysRaised=yes,location=no,menubar=no,status=no,titlebar=no,toolbar=no";

	return winCfg;
}

function openWin (targetUrl, winWidth, winHeight, isResizable, isScrollable) {
	if (windowId.closed == false) {
		windowId.close ();
	}

	windowId = window.open(targetUrl, 'guasch', initWinParams (winWidth, winHeight, isResizable, isScrollable));
}

function confirmDelete (link) {
	if (confirm("Desea eliminar este registro?")) {
		location = link;
	}	
}