function PopupShow (id) {
	document.getElementById(id).style.display = 'block';	
}
function PopupHide (id) {
	document.getElementById(id).style.display = 'none';	
}
