function mnON(n){
	obj = document.getElementById(n);
	obj.style.backgroundImage="url('images/bott_fill_p.gif')";
	obj.style.paddingBottom = 0;
	obj.style.paddingTop = 5;

	obj = document.getElementById(n+"_");
	obj.style.backgroundImage="url('images/bott_end_p.jpg')";
	obj.style.paddingBottom = 0;
	obj.style.paddingTop = 5;

}
function mnOFF(n){
	obj = document.getElementById(n);
	obj.style.paddingBottom = 5;
	obj.style.paddingTop = 0;
	obj.style.backgroundImage="url('images/bott_fill.jpg')";
	obj = document.getElementById(n+"_");
	obj.style.backgroundImage="url('images/bott_end.jpg')";
	obj.style.paddingBottom = 0;
	obj.style.paddingTop = 5;
}
