function Dialog(id){
	document.getElementById(id).style.visibility='visible';
	document.getElementById(id).style.cursor='pointer';
	//document.getElementById(id).style.zIndex=3500;	
}
function deDialog(id){
	document.getElementById(id).style.visibility='hidden';
	document.getElementById(id).style.cursor='auto';
	//document.getElementById(id).style.zIndex=2500;	
}

function FontMouseOver(id){
	document.getElementById(id).style.fontSize='18px';
	document.getElementById(id).style.cursor='pointer';
}
function deFontMouseOver(id){
	document.getElementById(id).style.fontSize='14px';
	document.getElementById(id).style.cursor='auto';
}
