// JavaScript Document
function change_photo(user,ref,du,indice,ext,nom_photo) {
	// url_photo='http://www.immoserail.com/'+user+'/img/photo_'+user+'_'+ref+'_'+du+'_'+indice+'.'+ext;
	url_photo='http://www.belfort-studio.com/resizer.php?src=images/photo_'+du+'_'+indice+'.'+ext+"&width=120&height=90";
	document.images[nom_photo].src=url_photo;					
}

// Affichage depuis boutique

function affiche_photo(du) {
	url_photo=document.images['photo_'+du].src;
	/*
	parties=url_photo.split(".jpg");
	new_url_photo=parties[0]+".jpg";
	*/
	window.open("http://www.belfort-studio.com/photo_annonce.php?img="+url_photo+"&ref="+du,'','width=695,height=570,menubar=no');
}

// Idem depuis administration

function affiche_photo_admin(ref,du,url_site) {
	url_photo=document.images['photo_'+du].src;
	parties=url_photo.split(".jpg");
	new_url_photo=parties[0]+"b.jpg";
	window.open(url_site+"photo_annonce.php?img="+new_url_photo+"&ref="+ref,'','width=620,height=570,menubar=no');
}

function editer_annonce(ref) {
	window.open('http://www.belfort-studio.com/annonce_edition.php?du='+ref,'','resizable=yes,scrollbars=yes,width=660,height=570');
}

function imprimer_annonce(ref) {
	window.open('http://www.belfort-studio.com/annonce_impression.php?du='+ref,'','resizable=yes,scrollbars=yes,width=660,height=570');
}

function envoi_par_mail(ref) {
	window.open('http://www.belfort-studio.com/envoi_par_mail.php?du='+ref,'','resizable=yes,scrollbars=yes,width=400,height=430');
}

function contact_emetteur(ref,email) {
	window.open('http://www.belfort-studio.com/contact_emetteur.php?email_dest='+email+'&du='+ref,'','resizable=yes,scrollbars=yes,width=400,height=430');
}

