function fritid_axax_get_url(fritid_url,html_obj_id){
	var xmlHttp;
	var html_obj = MM_findObj(html_obj_id);
	try{
	  // Firefox, Opera 8.0+, Safari
	  xmlHttp=new XMLHttpRequest();
	  }
	catch (e){
	  // Internet Explorer
	  try{
	    xmlHttp=new ActiveXObject("Msxml2.XMLHTTP");
	    }
	  catch (e){
	    try{
	      xmlHttp=new ActiveXObject("Microsoft.XMLHTTP");
	      }
	    catch (e){
	      alert("Your browser does not support AJAX!");
	      return false;
	      }
	    }
	  }	
	xmlHttp.onreadystatechange=function(html_obj_id){
	    if(xmlHttp.readyState==4){					
			if ((xmlHttp.responseText != "") || (parseInt(xmlHttp.responseText) != "NaN")){
				if ((xmlHttp.responseText != "")&&(html_obj)){
					html_obj.innerHTML = xmlHttp.responseText;
				}
			}
			else {
				alert("Java script error;");
			}
	    //document.myForm.time.value=xmlHttp.responseText;
	}
    }
	xmlHttp.open("GET",fritid_url,true);
	xmlHttp.send(null);
}
