function DrawAds(keywordsIn,countIn,styleIn,divIdIn){
	var urlIn = "http://thesellerdoor.com/cbads/cbads_ajax_datasourse.php?keywords=" + keywordsIn + "&count=" + countIn + "&style=" + styleIn;
	if(window.XMLHttpRequest) HttpReq = new XMLHttpRequest();	// Mozilla/Safari
	if(window.ActiveXObject) HttpReq = new ActiveXObject("Microsoft.XMLHTTP"); // IE
	HttpReq.open("GET", urlIn , false);
	HttpReq.send(null); 
	document.getElementById(divIdIn).innerHTML = HttpReq.responseText;
}
