function expandContract(number) 
	{
		var item = document.getElementById(number);
		if(item.className == 'displayInline') 
			{
				item.className = 'displayNone';
			}
		else
			{
				item.className = 'displayInline';
			}
		return false;
	}





//function clearLeaveEarlyDate(theLink, theSqlQuery)
//function clearLeaveEarlyDate(ID)
	//{
		//alert(ID);
		//alert('123');
		//return confirmLink(this, 'Are you sure you want to completely delete this property?\\nAll its rooms will be removed as well.');
		/*
			if (confirmMsg == '' || typeof(window.opera) != 'undefined') 
				{
					return true;
				}
	
			var is_confirmed = confirm(theSqlQuery);
			if (is_confirmed) 
				{
					//theLink.href += '&isJSconfirmed=1';
					return changeElement('clearLeaveEarlyDate||user='+ID+'', 'leavingDateHolder');
				}
		*/
		//changeElement('clearLeaveEarlyDate||user='+ID+'', 'leavingDateHolder');
		//return is_confirmed;
		//return false;
	//}