function doShowWindow(sHref, sName, iWidth, iHeight, sScroll, sResize){
	var iTop = ((screen.height - iHeight)/2);
	var iLeft = ((screen.width - iWidth)/2);
	var oWindow = window.open(sHref,sName,'top=' + iTop +'left=' + iLeft + ',height=' + iHeight + ',width=' + iWidth + ',top=' + iTop + ',left='+ iLeft + 'px,scrollbars=' + sScroll + ',resizable=' + sResize+ '');
	oWindow.focus();
}
function doShowWindowClose(){
	window.close();
}

function metrica(cadena)
{
	/*debug.log("**************************function metrica():"+cadena);

	var consejo_evento = (cadena.indexOf( "consejo_" ) != -1);
	var descarga_evento = (cadena.indexOf( "descarga_" ) != -1);

	if(consejo_evento)
	{
		pageTracker._trackEvent("Consejo",'click',cadena);
	}
	else if(descarga_evento)
	{
		pageTracker._trackEvent("Descarga",'click',cadena);
	}
	else
	{
		pageTracker._trackPageview(cadena);
	}
*/
}
