function createClanDiv() { 
		var newdiv = document.createElement('div'); 
		newdiv.setAttribute('id', 'clanDiv'); 
		newdiv.style.width = '142px'; 
		newdiv.style.height = '82px'; 
		newdiv.style.position = 'absolute'; 
		newdiv.style.right = 0;
		newdiv.style.top = 0;
		newdiv.style.zIndex = 999999;
		newdiv.innerHTML = '<a href="http://www.stajerskagz.si/?lang=si" target="_blank"><img src="http://www.stajerskagz.si/clan/clan_sgz.png" border="0" width="142" height="82" /></a>';
		
		document.body.appendChild(newdiv);
}

window.onload=createClanDiv;
