
	function display_other(val)
	{
		
		if(val=="Other")
		{
			$("#other_div").show();
			
		}	
		else
		{
			$("#other_div").hide();
		}
	}
	function validate_asset_form()
	{
		valid=true;
		if($("#id").val()=="")
		{
			if($("#upload_file").val()=="")
			{
				alert("Select file to upload");
				valid=false;
			}
			
		}
		
		if($("#label").val()=="" && valid)
		{
			alert("Filename required");
			valid=false;
		}
		
		return valid;
	}
	function thumb_image(image_id)
	{
		
		parent.$.colorbox({href:"/facilities/showpicture/id/"+image_id,height:'600px'});
	}
	
	
