// JavaScript Document
function CreateDiv(){
	
	dv = document.createElement('div'); // create dynamically div tag	
	dv.setAttribute('id','xxx');       //give id to it
	/*dv.style.position="absolute";
	dv.style.width=200 + "px";
	dv.style.height="auto";*/
	
	dv.style.display='block';
	
	dv.innerHTML = '<a href=http://www.thebc.com/share.php?link=' + window.location.href + '&title='+ document.title + ' target="_blank "><img src="http://www.thebc.com/images/site_images/broadcast_it.jpg" style="border:none" ></a>';
	document.body.appendChild(dv);
	
}
CreateDiv();