isDOM = document.getElementById; 
isMN = navigator.appName == "Netscape"; 
var w = 0, s = 0, l = 0, str = ""; 
if (isMN) { 
	var str = "px"; 
} 

function load (s) {
	if (s == 1) {
		if (isDOM) w = document.body.clientWidth; 
		else w = document.body.innerWidth; 
		
		if (isMN) s = pageXOffset; 
		else s = document.body.scrollLeft; 
		
		l = w + s - document.getElementById("calendar").offsetWidth; 
		
		document.getElementById("calendar").style.left = l + str; 
		document.getElementById("calendar").style.visibility = "visible";
		setTimeout('load(1);', 100);
	}
}
