// JavaScript Document

function showInfo(){
document.getElementById('infoNew').style.display='block';
}


function hideInfo(){
document.getElementById('infoNew').style.display='none';
}

