// NO MODIFICAR ESTE ARCHIVO, MODIFICAR LA VERSION DEL IDIOMA CORRESPONDIENTE
function hitCertifica(sitio_id,path,descr) {
	
    var size, colors, referrer, url;
    size = colors = referrer = 'otro';
    
    referrer = escape(document.referrer);
    
    if ( window.screen.width ) size = window.screen.width;
    if ( window.screen.colorDepth ) colors = window.screen.colorDepth;
    else if ( window.screen.pixelDepth ) colors = window.screen.pixelDepth;
    url2 = 'http://prima.certifica.com/cert/hit.dll?sitio_id=200117&path=' + path + '&referer=' + referrer + '&size=' + size + '&colors=' + colors + '&java=' + navigator.javaEnabled();
    url = 'http://prima.certifica.com/cert/hit.dll?sitio_id=' + sitio_id + '&path=' + path + '&referer=' + referrer + '&size=' + size + '&colors=' + colors + '&java=' + navigator.javaEnabled();

    if (descr)
        url += '&descr=' + escape(descr);
    document.writeln( '<img src="' + url2 + '" width="1" height="1" border="0" alt="Certifica.com">' );
	document.writeln( '<img src="' + url + '" width="1" height="1" border="0" alt="Certifica.com">' );
    	
	url = 'http://hits.e.cl/cert/hit.dll?sitio_id=' + sitio_id + '&path=' + path ;
	document.writeln( '<img src="' + url + '" width="1" height="1" border="0" alt="Certifica.com">' );
	
	
}

function hitCertificaAjax( sitio_id,path,descr) 
{
    var size, colors, referrer, url, url2;
    size = colors = referrer = 'otro';
    
    referrer = escape(document.referrer);
    
    if ( window.screen.width ) size = window.screen.width;
    if ( window.screen.colorDepth ) colors = window.screen.colorDepth;
    else if ( window.screen.pixelDepth ) colors = window.screen.pixelDepth;
    url = 
       'http://prima.certifica.com/cert/hit.dll?sitio_id=' + sitio_id + '&path=' + path +
       '&referer=' + referrer + '&size=' + size + '&colors=' + colors;
    url += '&java=' + navigator.javaEnabled();
	
	url2  = 'http://prima.certifica.com/cert/hit.dll?sitio_id=200117&path=' + path + '&referer=' 
		+ referrer + '&size=' + size + '&colors=' + colors + '&java=' + navigator.javaEnabled();
	

	if (descr)
        url += '&descr=' + escape(descr);
    document.getElementById('resultadoAjax').innerHTML = document.getElementById('resultadoAjax').innerHTML +    
    			'<img src="' + url + '" width="1" height="1" border="0" alt="Certifica.com">' ;
	if (descr)
		url2 += '&descr=' + escape(descr);
    document.getElementById('resultadoAjax').innerHTML = document.getElementById('resultadoAjax').innerHTML +    
    			'<img src="' + url2 + '" width="1" height="1" border="0" alt="Certifica.com">' ;
	          

}