// JavaScript Document
function showThumbImages(propid,imgstart){
httpObject3 = getHTTPObject();
if (httpObject3 != null) {
httpObject3.open("GET", "showgallery.php?propid="+propid+"&imgstart="+imgstart, true);
httpObject3.send(null);
httpObject3.onreadystatechange = setThumbnails;
}
}

function setThumbnails(){
if(httpObject3.readyState == 4){
document.getElementById('tmbshow').innerHTML = httpObject3.responseText;
//alert(httpObject1.responseText);
}
}


function showBigImage(imgid,titletxt){
 bigimage=document.getElementById('bigshow');
 bigimage.innerHTML = '<center>Click on image to see thumbnails.<br /><br /><a href="javascript:closeBigImage()"><img src="incfiles/showimage.php?id='+imgid+'" border="0" /></a><br /><br />'+titletxt+'</center>';
 
 bigimage.style['display']='block';
 document.getElementById('tmbshow').style['display']='none';
}

function closeBigImage(){
	document.getElementById('tmbshow').style['display']='block';
    document.getElementById('bigshow').style['display']='none';
}
