function cimg(image,caption,pad) {
   var obj = document.getElementById('imghid');
   obj.innerHTML = '<b>'+caption+'</b> &nbsp; (<a href="javascript:climg();">Close Image</a>)<br><a href="javascript:climg();"><img src="/images/client/'+image+'" width="400"  border="0" /></a>';
   obj.style.margin = pad+"px 0 0 0";
   obj.style.display = "block";
}
function climg() {
   var obj = document.getElementById('imghid');
   obj.style.display = "none";
}
