function show_c_form()
{
    $("#comment_form").fadeIn('slow');
}
function hide_c_form()
{
    $("#comment_form").fadeOut('slow');
}

function vote(id,vote)
{
    if(vote==1 || vote==-1)
    {
       $.post('libraries/photo_comment.php', { i:id,v:vote,http:true }, function (data)
	{
	    //alert(data);
		eval(data);
 if(response.code==1)
            {
                document.getElementById('bar_yes').style.width=response.yes+'px';
                document.getElementById('bar_no').style.width=response.no+'px';
		$("#y_y").html('%'+response.yes+'');
		$("#y_n").html('%'+response.no+'');
            }

//		$("#yes").css( "width", Math.parseInt(response.yes));
	//	$("#no").css( "width",Math.parseInt(response.yes));


	});
    }
}
function email_to_admin(link)
{
	window.open(link.href,'','width=550,height=580');
	return false;
}