function showtime1(){
var now = new Date()
var hours = now.getHours()
var minutes = now.getMinutes()
var seconds = now.getSeconds()
if (hours<10){hours = "0"+hours}
var timeValue = "" + (hours > 24 ? hours - 24 : hours) 
timeValue  += (minutes < 10 ? ":0" : ":") + minutes
timeValue  += (seconds < 10 ? ":0" : ":") + seconds
timeValue  += (hours >= 24 ?  "" :  "")
timerID = setTimeout("showtime1()",1000)
document.getElementById("bgclock").innerHTML = timeValue
}
//show or hide a hidden div
function showHideMe(id){
   if(document.getElementById(id).style.display=="none"){
     document.getElementById(id).style.display="block"
   }
else{
   document.getElementById(id).style.display="none"
  }
}
//show or hide a hidden div
function showHide(id)
{
	for(var j = 0; j < 3; j++)
	{
		 if(document.getElementById(id) != document.getElementById("customerInfo"+j))
		 {
              if(document.getElementById("customerInfo"+j).style.display== "block")
			  {
				 document.getElementById("customerInfo"+j).style.display="none"
				 document.getElementById("helpImg"+j).src="../pngs_images/plus.png"
			   }
		  }
		  else if(document.getElementById(id) == document.getElementById("customerInfo"+j) && document.getElementById(id).style.display == 'none')
			{
			 document.getElementById(id).style.display="block"
			 document.getElementById("helpImg"+j).src="../pngs_images/minus.png"
			}
			else
			{
			 document.getElementById(id).style.display="none"	
			 document.getElementById("helpImg"+j).src="../pngs_images/plus.png"
			}
     }
}

