function openPopup(link)
{$.get(link,{popup:true},function(data)
{$('#popup-bg .text').html(data);});$('#popup-bg').fadeIn(300);}
function closePopup()
{$('#popup-bg').fadeOut(300,function(){$('#popup-bg .text').html('<img src="/img/layout/loading.gif" />');})}
function newInterest()
{openPopup('/photo/interest?photo_id='+$('#photo-id').val());}
function removeInterest(e,photo_id)
{$(e).parent().parent().remove();$.post('/photo/removeInterest',{'photo_id':photo_id},function(data)
{data=jQuery.parseJSON(data);});}
function contact()
{var n=0;var interests=new Object();$(".interest").each(function(i){interests[n]=$(this).attr('id');n++;});$.post('/main/contact',{args:{'politeness':$('#contact-politeness').val(),'lastname':$('#contact-lastname').val(),'firstname':$('#contact-firstname').val(),'phone':$('#contact-phone').val(),'email':$('#contact-email').val(),'street':$('#contact-street').val(),'postal_code':$('#contact-postal_code').val(),'city':$('#contact-city').val(),'project':$('#contact-project').val(),'delay':$('#contact-delay').val(),'rdv':$('#contact-rdv').val(),'comment':$('#contact-comment').val(),'interests':interests}},function(data)
{if(data['status']=='OK')
{$('.success').html(data['message']);$('#contact-infos').remove();$('#contact-form').remove();}
else
{$('.error').html(data['message']);}});}
function isInteger(s){return(s.toString().search(/^-?[0-9]+$/)==0);}
function UnCryptMailto(s)
{var n=0;var r="";for(var i=0;i<s.length;i++)
{n=s.charCodeAt(i);if(n>=8364)
{n=128;}
r+=String.fromCharCode(n-1);}
return r;}
function linkTo_UnCryptMailto(s)
{var newWindow=window.open(UnCryptMailto(s),'_blank');newWindow.focus();}
