// JavaScript Document

	function RowLight(iRow, iSwitch)
	{
		sVis = "hidden";
		if (iSwitch == 1) {sVis = "visible";}
		document.getElementById('idMenu' + iRow).style.visibility = sVis;
	}

	function OpenMedia(sPropId, sNum_Photo)
	{
		iWidth = 160;
		iHeight = 120;
		sParams = "width=" + iWidth + "px,height=" + iHeight + "px";
		sParams = sParams + ",name=openmedia,scrollbars=0";
		sURL = "/photos.php?propid=" + sPropId + "&num_photo=" + sNum_Photo;
		window.open(sURL, 'Media', sParams);
	}
