//Site.md Stats Script v0.2
function smd_getInfo(suid) {
var arr = {
	hst: document.location.host,
	suid: suid
}
var str = '';
for (var k in arr)
	str += '&'+k+'='+escape(arr[k]);
return str;
}
window.onload=function(){
if(smd_uid != undefined) {
//document.getElementById('smd_counter').innerHTML = '<a href="http://site.md/info/'+escape(smd_host)+'" title="Site.md - '+escape(smd_host)+'" target="_blank"><img src="http://site.md/index.php?c=ajax&m=stat'+smd_getInfo(smd_uid)+'" width="88" height="31" border="0" alt="Site.md"/></a>';

document.getElementById('smd_counter').innerHTML = '<img src="http://site.md/index.php?c=ajax&m=stat'+smd_getInfo(smd_uid)+'" width="88" height="31" border="0" alt="Site.md"/>';
}
}

