// T.I.M. Informatica
function FlipImage(url)
{
    if (window.event.srcElement.tagName == "IMG" ) {
        window.event.srcElement.src = url;
    }
}

function OpenPopup(sUrl) 
{ 
    window.open(sUrl,null,'toolbar=no, status=no, scrollbars=yes, width=657,height=520')
}

function RssStringCheck(sStr)
{
    var sTmp="";
	
	for(var i=0;i<sStr.length;++i)
	{
	    if(sStr[i]!='à')
		sTmp=sTmp+sStr[i];
	    else
		sTmp=sTmp+"a'";
	}

    return sTmp;
}

function WndUpdateTitle(sTit) 
{ 
    document.title=sTit
}

var bo_noscript_id = 0;

function isIE() {
var strBrowser = navigator.userAgent.toLowerCase();
return (strBrowser.indexOf("msie") > -1 && strBrowser.indexOf("mac") < 0);
}

function startIeFix() {
if (isIE()) {
document.write('<div style="display: none;" id="bo_noscript_id_' + bo_noscript_id + '">');
}
}

function endIeFix() {
if (isIE()) {
document.write('</div>');
var theObject = document.getElementById("bo_noscript_id_" + bo_noscript_id++);
theObject.outerHTML = theObject.innerHTML;
}
}
