
var req ;
var id;


function includeBanner(id, shopID) {
	//var url = "http://localhost:8099/dbd/vote/gen_banner.php?sid=" + shopID + "&rand=" + (Math.random() * 100);
	var url = "http://www.dbdvote.com/vote/gen_banner.php?sid=" + shopID + "&rand=" + (Math.random() * 100);
	
  	var element = document.getElementById(id);		 
	element.innerHTML = "<iframe frameborder='0' src=" + url + " width='140' height='75'  />";
}

