function abreVentana(url,ancho,alto)
{
	var left = (screen.availWidth - ancho)/2, top = (screen.availHeight - alto)/ 2;
	var imgWin = window.open(url, "", "width=" + ancho + ",height=" + alto + ",left=" + left + ",top=" + top);
}

function ipopup(img, imgTitle)
{
	var width = 640, height = 480;
	var left = (screen.availWidth - width)/2, top = (screen.availHeight - height)/ 2;
	var imgWin = window.open("about:blank", "", "width=" + width + ",height=" + height + ",left=" + left + ",top=" + top);

	if(!imgWin)
	{
		document.location.href=img;
	}
	else
	{
		var html = '<html><head><title>'+imgTitle+'</title>';
		html += '<style type="text/css">';
		html += 'html, body { font : 12px Arial; margin : 0px; padding: 0px; background: #DCEBED; background: url(images/cargando.gif) no-repeat top}';
		html += '</style>';
		html += '\n</head>';
		html += '\n<body>';
		html += '\n<table cellpadding=0 cellspacing=0 border=0 width=100% height=100%><tr><td align=center valign=middle><div id="image" align="center" valign="middle"><img src="' + img + '" border="1" galleryimg=no onClick="window.close()" id="imagen"></div></td></tr></table>';
		html += '\n</body></html>';

		imgWin.document.open();
		imgWin.document.write(html);
		imgWin.document.close();
	}
}