var this_doc;
if(document.getElementById("blu")){
	 badge_link ="http://www.downtownwomensclub.com/dwc/images/DWCBlueBlogBadge.png";
	document.write("<img id='badge-id1'>")
	this_doc = document.getElementById("badge-id1");
}else if(document.getElementById("orng")){
	 badge_link ="http://www.downtownwomensclub.com/dwc/images/DWCBlogBadgeOrange.png";
	document.write("<img id='badge-id2'>")
	this_doc = document.getElementById("badge-id2");
}
this_doc.style.width = "165px";
this_doc.style.height = "90px";
//this_doc.style.position="absolute";
this_doc.style.cursor = "pointer";
this_doc.src= badge_link ;
this_doc.onclick = function() {
window.open("http://www.downtownwomensclub.com/landing");    
}

