//here's the calendar scroller function  

if(navigator.appName=="Netscape"){ // If Netscape 4
	layerRef='document.'
	styleRef=''
	topRef='.top'
	leftRef='.left'
}else if(document.all){ // If IE4
	layerRef=''
	styleRef='.style'
	topRef='.pixelTop'
	leftRef='.pixelLeft'
}


a_y_loc=96;
	
function moveLayer(layer,ymove){


	var this_y_loc = a_y_loc;

	var new_y = this_y_loc+ymove;

	eval(layerRef+layer+styleRef+topRef+'='+new_y);
	
	a_y_loc=new_y;
	

}