var EPImages = {
	initialize: function() {},
	showResampled: function(fp_src,obj_des,properties) {
		var str_src = 'download.php?dtype=Thumb&fp=' + fp_src + '&w=' + properties.width + '&h=' + properties.height;
		obj_des.src = str_src;
		$('desFotoBig').update('');
		if(properties.alt) {
			obj_des.alt = properties.alt;
			$('desFotoBig').update(properties.alt);
		} return;}};