﻿/*레이어 보이기 없애기*/
function Show(divid) { 
  divid.style.visibility = "visible";
} 
function Hide(divid) { 
  divid.style.visibility = "hidden";
}
