function showGallery(theId, theLang, theType) {
	if ((theType == 'Photo')||(theType == 'Plan')||(theType == 'Location')) {
		w_width = 830;
		w_height = 640;
	} else if (theType == 'Video') {
		w_width = 550;
		w_height = 450;
	}
	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_25/showgallery.php?pageid=' + theId+'&lang=' + theLang +'&type='+ theType;
  window.showGalleryWindow = open(fparam, 'showGalleryWindow', theWindowParam);
	setTimeout('if(showGalleryWindow&&!showGalleryWindow.closed)showGalleryWindow.focus()',100);
}
function showBigPhoto(theId, theLang) {
	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_25/showphoto.php?pageid=' + theId + '&lang=' + theLang;
  window.showPhotoWindow = open(fparam, 'showPhotoWindow', theWindowParam);
	setTimeout('if(showPhotoWindow&&!showPhotoWindow.closed)showPhotoWindow.focus()',100);
}
function ShowPhotoSrc(theId, theFile, theDescId, theDesc, theType) {
	if (document.getElementById) {
		var c = document.getElementById(theId);
		if (c.style.display != "block") {
			if ((theType == 'Photo')||(theType == 'Plan')||(theType == 'Location')) {
				c.innerHTML = '<img src="' + theFile + '">';
			} else if (theType == 'Video'){
				c.innerHTML =  '<OBJECT ID="EstatesVideo" classid="CLSID:22D6F312-B0F6-11D0-94AB-0080C74C7E95" codebase="http://activex.microsoft.com/activex/controls/mplayer/en/nsmp2inf.cab#Version=6,0,02,902" standby="Loading Microsoft® Windows® Media Player components..." type="application/x-oleobject"><PARAM NAME="FileName" VALUE="'+theFile+'"><PARAM NAME="animationatStart" VALUE="true"><PARAM NAME="transparentatStart" VALUE="true"><PARAM NAME="autoStart" VALUE="true"><PARAM NAME="showControls" VALUE="true"><EMBED type="application/x-mplayer2" pluginspage = "http://www.microsoft.com/Windows/MediaPlayer/" SRC="'+theFile+'" name="EstatesVideo" AutoStart=true></EMBED></OBJECT>';
			}
		} else {
			c.innerHTML = '<img src="../../layout/images/transparent.gif">';
			c.style.display="none";
		}
	}
	if ((theType == 'Photo')||(theType == 'Plan')||(theType == 'Location')) {
		document.getElementById(theId).alt = theDesc;
	}
	document.getElementById(theDescId).value = theDesc;
}
function showEstTabDetails() {
	document.getElementById('est_tab_details').style.display = 'block'; 
	document.getElementById('est_tab_techSpecs').style.display = 'none'; 
	document.getElementById('est_tab_moreinfo').style.display = 'none'; 
}
function showEstTabTechSpecs() {
	document.getElementById('est_tab_details').style.display = 'none'; 
	document.getElementById('est_tab_techSpecs').style.display = 'block'; 
	document.getElementById('est_tab_moreinfo').style.display = 'none'; 
}
function showEstTabMoreInfo() {
	document.getElementById('est_tab_details').style.display = 'none'; 
	document.getElementById('est_tab_techSpecs').style.display = 'none'; 
	document.getElementById('est_tab_moreinfo').style.display = 'block'; 
}
