function ajaxLoad(source, destination, method)
{
	if(!method) method= 'GET';
    if(window.XMLHttpRequest) xmlhttp= new XMLHttpRequest(); // code for IE7+, Firefox, Chrome, Opera, Safari
    else xmlhttp= new ActiveXObject("Microsoft.XMLHTTP"); // code for IE6, IE5
    xmlhttp.open(method, source, false);
    xmlhttp.send(null);
    document.getElementById(destination).innerHTML= xmlhttp.responseText;
}
