function showEl(eID){document.getElementById(eID).style.display = "block";}
function gotoContact(){document.location.href='../../request';}
function gotoShortlist(){document.location.href='../../shortlist';}
function showHide(eID){
var sdisplay = document.getElementById(eID).style.display;
if (sdisplay == "block") sdisplay = "none";else sdisplay="block";
document.getElementById(eID).style.display=sdisplay;}