function showdiv(imagename,photoid)
{
       
       var ssImages= document.getElementById('imagename').value;
	   var images=ssImages.split(','); 
	   var total= images.length;
	  	//alert(total);
	   var snImageId= document.getElementById('imageid').value;
	   var asId = snImageId.split(',');

	   var snImageHeights=document.getElementById('imageheight').value;
	   var snImgHeight=snImageHeights.split(',');
	    
	    document.getElementById('lightBoxDiv').style.display='block'; 
	    var temp=snImgHeight[imagename];
	    
	    document.getElementById('lightBoxDiv').style.height=parseInt(snImgHeight[imagename])+ 100 + 'px';
		document.getElementById('customLightBox').style.display = 'block';
		display_path='bigimages/';
		image=display_path + images[imagename];
		image=image;
		document.getElementById('customLightBox').style.height=document.body.offsetHeight + 180 + 'px';
		var totalview = 0;
		imageshow(totalview,image,photoid,imagename,total);
		
	


} 
function imageshow(totalview,image,photoid,imagename,total)
{
   	
	//alert(image);
	var  decre=parseInt(imagename) - 1;
	 var incre=parseInt(imagename) + 1;
	 var preparedisplaycontent='';
	 

	
	 preparedisplaycontent +='<div class='+'yellowbg1'+' align='+'left'+'><p class='+'fleft'+'><b id='+''+'></b></p><div align='+'right'+'><a href='+'#'+' onclick=closelightbox('+photoid+')><img class='+'fleft'+ ' src='+'images/close.gif'+' /></a><div class='+'clearb'+'>&nbsp;<div><div class='+'clearb'+'>&nbsp;<div></div></div>';
	 
	 
	  if(decre!=-1)
	 {
	    preparedisplaycontent +='<div class='+'fleft'+'><a href='+'#'+' onclick=showdiv('+decre+','+totalview+','+photoid+')><img src='+'images/photo-previos-icon.gif'+' /></a></div>'
	 }
	 preparedisplaycontent +='<div class='+'fleft'+' id='+''+' >&nbsp;</div>'
	 //alert(incre+" "+total);
	 if(incre < total)
	 {
	    preparedisplaycontent +='<div class='+'fright'+'><a href='+'#'+' onclick=showdiv('+incre+','+totalview+','+photoid+')><img src='+'images/photo-next-icon.gif'+' /></a></div>'
	 }
	 
	 preparedisplaycontent +='<div class='+'but_gallery'+'></div><div align='+'center'+ ' ><img src='+image+'></div><div class='+'but_gallery'+'>';
	 //alert(preparedisplaycontent);
	preparedisplaycontent +='</div>';
	//alert(preparedisplaycontent);
	document.getElementById('lightBoxDiv').innerHTML=preparedisplaycontent;
}
function closelightbox(id)
{
   document.getElementById('lightBoxDiv').style.display='none'; document.getElementById('customLightBox').style.display = 'none' ;  
 }   

function setFocus()
{
	if(document.getElementById('txtContactName'))
	document.getElementById('txtContactName').focus();
}

