function Estates24_showPhoto(theId, theLang, thePhotoNum) {
	w_width = 750;
	w_height = 620;
	if (screen) {
		w_left = (screen.availWidth - w_width)/2;
		w_top = ((screen.availHeight - w_height)/2)-20;
	}
	theWindowParam = 'width='+w_width+',height='+w_height+',left='+w_left+',top='+w_top+',status=no,resizable=yes,scrollbars=yes';

	fparam = 'templates/ws_mm_estates_24/showphoto.php?pageid=' + theId + '&lang=' + theLang + '&photonum=' + thePhotoNum;
  window.Estates24_showPhotoWindow = open(fparam, 'Estates24_showPhotoWindow', theWindowParam);
	setTimeout('if(Estates24_showPhotoWindow&&!Estates24_showPhotoWindow.closed)Estates24_showPhotoWindow.focus()',100);
}
function Estates24_showPhotoBigPhoto(theId, theFile, theImageWidth) {
	DispImageWidth = "";
	if (theImageWidth != '') {
		DispImageWidth = 'width = "'+theImageWidth+'"';
	}

	if (document.getElementById) {
		var c = document.getElementById(theId);
		if (c.style.display != "block") {
			c.innerHTML = '<img src="' + theFile + '" '+DispImageWidth+' >';
		} else {
			c.innerHTML = '<img src="../../layout/images/transparent.gif">';
			c.style.display="none";
		}
	}
}
function Estates24_showPhotoGalleryBigPhoto(theId, theFile, theImageWidth, theDescId, theDesc) {
	DispImageWidth = "";
	if (theImageWidth != '') {
		DispImageWidth = 'width = "'+theImageWidth+'"';
	}

	if (document.getElementById) {
		var c = document.getElementById(theId);
		if (c.style.display != "block") {
			c.innerHTML = '<img src="' + theFile + '" '+DispImageWidth+' >';
		} else {
			c.innerHTML = '<img src="../../layout/images/transparent.gif">';
			c.style.display="none";
		}
	}

	document.getElementById(theId).alt = theDesc;
	document.getElementById(theDescId).value = theDesc;
}
function Estates24_showDetails() {
	document.getElementById('tab_details').style.display = 'block'; 
	document.getElementById('tab_techSpecs').style.display = 'none'; 
	document.getElementById('tab_gallery').style.display = 'none'; 
}
function Estates24_showTechSpecs() {
	document.getElementById('tab_details').style.display = 'none'; 
	document.getElementById('tab_techSpecs').style.display = 'block'; 
	document.getElementById('tab_gallery').style.display = 'none'; 
}
function Estates24_showGallery() {
	document.getElementById('tab_details').style.display = 'none'; 
	document.getElementById('tab_techSpecs').style.display = 'none'; 
	document.getElementById('tab_gallery').style.display = 'block'; 
}
