var adbanners = {
	"ad1": {
		file: "images/spacer.gif",
		height: 645,
		width: 145,
		link: "http://warnervideo.com/justiceleaguecrisis/"
	},
	"ad2": {
		file: "images/spacer.gif",
		height: 685,
		width: 255,
		link: "http://warnervideo.com/justiceleaguecrisis/"
	}
}

/**
*	@param id 	String 	ID of the ad mapped to the adbanners object. Possible values are "ad1" and "ad2"
*	@param home	Boolean	Flag if the page you are embedding is at the home page level (Defaults to false)
*/
function adBanner(id, home) {
	var path = "";
	if (!home) path = "../";
	
	//document.write("<a href=\""+ adbanners[id].link+"\" target=\"_blank\">");
	document.write("<img src=\""+ path + adbanners[id].file +"\" width=\""+ adbanners[id].width +"\" height=\""+ adbanners[id].height +"\" alt=\"\" border=\"0\" />");
	//document.write("</a>");
}