// JavaScript Document

function showLonglet() {
divLonglet.style.display = 'block';
divShortlet.style.display = 'none';

}
function showShortlet() {
divLonglet.style.display = 'none';
divShortlet.style.display = 'block';
}