function div_over(obj)
	{
	if(navigator.appName=="Netscape")
		{
		obj.name=obj.style.background;
		obj.style.background="#CCCCCC";
		}
	}

function div_out(obj)
	{if(navigator.appName=="Netscape") obj.style.background=obj.name;}

	
function creaAjax()
		{
		    var xmlhttp=false;
		    try {
		    xmlhttp = new ActiveXObject("Msxml2.XMLHTTP");
		    } catch (e) {
		    try {
		    xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");
		    } catch (E) {
		    xmlhttp = false;
		    }
		    }
		
		    if (!xmlhttp && typeof XMLHttpRequest!='undefined') {
		    xmlhttp = new XMLHttpRequest();
		    }
		    return xmlhttp;
		} 
		
		