function PadDigits(n, totalDigits) { 
	n = n.toString(); 
	var pd = ''; 
	if (totalDigits > n.length) { 
		for (i=0; i < (totalDigits-n.length); i++) { 
			pd += '0'; 
		} 
	} 
	return pd + n.toString(); 
} 

function mostrarFichaAlcalde(cod_provincia, cod_canton, cod_partido) {
	var baseURL = "/ln_ee/ESPECIALES/2006/diciembre/alcaldes/"
	day = new Date();
	id = day.getTime();
	var URL = baseURL + cod_provincia +'_'+ PadDigits(cod_canton, 2) +'_'+ PadDigits(cod_partido, 2) +'.html';

	eval("fichaW" + id + " = window.open(URL, '" + id + "', 'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=380,height=300');");
}
