function get_resim(strURL){
	document.getElementById("icerik_").innerHTML = "<table width=\"32\" height=\"32\" border=\"0\" cellpadding=\"0\" cellspacing=\"0\"><tr><td width=\"32\" height=\"32\" align=\"center\" valign=\"middle\"><img src=\"ajax_files/loading.gif\" width=\"16\" height=\"16\"></td></tr></table>";
	var xmlHttpReq = false;
    var self = this;
    if (window.XMLHttpRequest) {
        self.xmlHttpReq = new XMLHttpRequest();
    }
    else if (window.ActiveXObject) {
        self.xmlHttpReq = new ActiveXObject("Microsoft.XMLHTTP");
    }
    self.xmlHttpReq.open('POST', strURL, true);
    self.xmlHttpReq.setRequestHeader('Content-Type', 'application/x-www-form-urlencoded');
    self.xmlHttpReq.onreadystatechange = function() {
		if (self.xmlHttpReq.readyState == 4) {
			var str = self.xmlHttpReq.responseText;
			document.getElementById("icerik_").innerHTML = str;
		}
	}					
	self.xmlHttpReq.send(null);
}