/* Minification failed. Returning unminified contents.
(1,10): run-time error CSS1031: Expected selector, found 'AbrirCentro('
(1,10): run-time error CSS1025: Expected comma or open brace, found 'AbrirCentro('
(10,10): run-time error CSS1031: Expected selector, found 'prueba('
(10,10): run-time error CSS1025: Expected comma or open brace, found 'prueba('
 */
function AbrirCentro(url, nompopup, popW, popH, resizable, scroll) {
	w = screen.availWidth;
	h = screen.availHeight;
	var leftPos = (w-popW)/2; topPos = (h-popH)/2;
	leftPos = leftPos - 20;
	topPos = topPos - 20;
	window.open(url,nompopup,'width=' + popW + ',height=' + popH + ',top=' + topPos + ',left=' + leftPos + ',resizable=' + resizable + ',scrollbars=' + scroll );
}

function prueba(param)
{
    alert(param);
}
