function closeWin(){
	window.close();
}
function printWin(){
	window.print();
}

//Œ¾Œê‘I‘ð
function OpenMenu(id){
   document.getElementById( id ).style.visibility = 'visible';
}
function CloseMenu(id){
   document.getElementById( id ).style.visibility = 'hidden';
}
