// Dreamweaver Functions
function MM_openBrWindow(theURL,winName,features) { //v2.0
  window.open(theURL,winName,features);
}

function fScrollMenu(){
  document.all.navLeftMenu.style.top = fGetScrollOffset() + 10;
}

function fGetScrollOffset(){
	var intScrollOffset;

	if (self.pageYOffset) // all except Explorer
		intScrollOffset = self.pageYOffset;
	else if (document.documentElement && document.documentElement.scrollTop)
		intScrollOffset = document.documentElement.scrollTop;
	else if (document.body) // all other Explorers
		intScrollOffset = document.body.scrollTop;
	
	return intScrollOffset;
}

window.onscroll = fScrollMenu;