function banner(wid, hei, adId, adPlace, imgFilePath, sponsorUrl, https_flag){

	https_flag = 0;
	if (location.protocol == "https:") {
		https_flag = 1;
	}

	document.write('<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000"');
	if (https_flag == 1) {
		document.write('codebase="https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"\n');
	} else {
		document.write('codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,29,0"\n');
	}
	document.write('width='+wid+' height='+hei+'>\n');

	document.write('<param name="movie" value="http://'+imgFilePath+'?ClickTag='+sponsorUrl+'?id='+adId+'%26adPlace='+adPlace+'">');
	document.write('<param name="quality" value="high">\n');

	if (https_flag == 1) {
		document.write('<embed src="https://'+imgFilePath+'?ClickTag='+sponsorUrl+'?id='+adId+'%26adPlace='+adPlace+'"\n');
	} else {
		document.write('<embed src="http://'+imgFilePath+'?ClickTag='+sponsorUrl+'?id='+adId+'%26adPlace='+adPlace+'"\n');
	}
	document.write('pluginspage="http://www.macromedia.com/go/getflashplayer" type="application/x-shockwave-flash"\n');
	document.write('quality="high"\n');
	document.write('width='+wid+' height='+hei+'>\n');
	document.write('</embed>\n');

	document.write('</object>\n');
}