function close_win(id){
	document.getElementById(id).style.display = "none";
}
function open_win(id){
	document.getElementById(id).style.display = "inline-block";
}
