function showcpmbanner ( bcode , divid )
{
	var cpm_xmlHttp = null 	
	if (typeof window.ActiveXObject != 'undefined' ) 
	{
		cpm_xmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
	} 
	else
	{
		cpm_xmlHttp = new XMLHttpRequest();
	}

	var cpm_url = "/cpm-banner/showbanner.asp?bcode="+bcode;

	cpm_xmlHttp.open("GET", cpm_url, false);
    cpm_xmlHttp.send(null);
	
	if (cpm_xmlHttp.readyState == 4 || cpm_xmlHttp.readyState=="complete") 
	{
		document.getElementById(divid).innerHTML=cpm_xmlHttp.responseText
	}
}