function selectImage()
		{
  		var totalNoOfImages = 80;
  		var imageNo = 0;
  		var imageName = "";
  		imageNo = Math.round((Math.random()*100) % totalNoOfImages);
    		imageName =  imageNo;
  		return(imageName);
		}
function Elaborateban(bgURL)
	{
	document.write("<Style>");
	document.write(".tdBanner	{");
	document.write("	background-image: url('" + bgURL + selectImage() + ".jpg');");
	document.write("	background-repeat: no-repeat;");
	document.write("	background-color: '#C00000';");
	document.write("	background-position: top left;");

	document.write("	font-family: 'Trebuchet MS';");
	document.write("	font-size: 10pt;");
	document.write("	font-weight: bold;");
	document.write("	color: #ffffff;");
	document.write("	white-space: nowrap;");
	document.write("	line-height: 100%;");
	document.write("	letter-spacing: 1px;");
	document.write("	text-align: right");

	document.write("}");
	document.write("</Style>");
	}

