function swapImg(obj){
var o=document.getElementById(obj);
//alert(o.style.display);
if(o.style.display=='inline'){o.style.display='none';}
else{o.style.display='inline';}
}

function showImage(url,w,h){
var bigphoto=window.open(url,'title','width='+w+', height='+h+', status=1, scrollbars=1');
bigphoto.focus();
return false;
}

function go_to_text() {
  //var pref="Комментарий к фото № ";
	//var ht=':\n';
  //  document.getElementById('tfe_text').value=document.getElementById('tfe_text').value+pref+text+ht;

		$('#comment_photo').hide();
		$('#discuss_comment').show();
		return false;
}
