// JavaScript Document
var log;
function ajax_doo( thisurl , thisid, picload, webname){
        document.getElementById(thisid).innerHTML = "<img border='0' src='"+webname+"/images/"+picload+".gif'>";
      var xmlhttp=false;

 /*@cc_on @*/
/*@if (@_jscript_version >= 5)
try {
xmlhttp = new ActiveXObject('Msxml2.XMLHTTP');
} catch (e) {
try { xmlhttp = new ActiveXObject('Microsoft.XMLHTTP'); } 
catch (E) 
{ xmlhttp = false; }
}
@end @*/

    if(!xmlhttp) { xmlhttp=new XMLHttpRequest(); }
    xmlhttp.open('GET',thisurl, true);
    xmlhttp.onreadystatechange = function() {
        if(xmlhttp.readyState==4) { 
        document.getElementById(thisid).innerHTML = xmlhttp.responseText; 
       data=xmlhttp.responseText;
		 
       	   document.getElementById(thisid).innerHTML =data;	   
 }
    }
    xmlhttp.send(null);
}
function clearbox(x){ document.getElementById(x).value = "" ;	};
function lod(){document.getElementById('waitDiv').style.visibility = 'visible';	};
function dosearch(){document.f_search.submit(); };
