function Plus(id){
	with(document){
		getElementById(id).value=eval(getElementById(id).value)+1;
	}//with
}
function Minus(id){
	with(document){
		getElementById(id).value=eval(getElementById(id).value)-1;
	}//with
}
