
isDOM = document.getElementById; 
isMN = navigator.appName == "Netscape"; 
var h = 0, s = 0, t = 0, str = "", m = 0; 
if (isMN) { 
	var str = "px;"; 
	var m = 0; 
} 

function smScroll() { 
	if (isDOM) h = document.body.clientHeight; 
	else h = document.body.innerHeight; 
	
	if (isMN) s = pageYOffset; 
	else s = document.body.scrollTop; 
	
	if (s == 0) s = document.documentElement.scrollTop; 
	
	t = h + s - m - document.getElementById("sm").offsetHeight; 
	document.getElementById("sm").style.top = t + str; 
} 

function softmedia() {
	document.write('<div id="sm"><a href="http://www.softmedia.ee" class="blank" title="Design by Softmedia"><img src="http://www.softmedia.ee/sm_b/sm_b.gif" alt="Design by Softmedia" /></a></div>');
	setInterval('smScroll();', 10); 
}