function bring_to_front(element){
	element.style.zIndex = 10001;
}
function bring_to_back(element){
	element.style.zIndex = 100;
}
