function ComeBackOver() {
	if (history.length!=0) {
		ComeBack.filters.item(0).enabled=false;
        }
}

function ComeBackOn() {
	if (history.length!=0) {
		history.back();
	}
}

