// JavaScript Document
function change_photo(url_photo,nom_photo) {
	document.images[nom_photo].src=url_photo;					
}

function affiche_photo(type,ref) {
	url_photo=document.images['photo_'+ref].src;
	parties=url_photo.split("_thumb");
	new_url_photo=parties[0]+parties[1];
	window.open("http://www.chalon-nautic.com/photo.php?type="+type+"&ph="+new_url_photo+"&ref="+ref,'','width=640,height=600,menubar=no');
}

function affiche_photo_detail(type,ref,i) {
	url_photo=document.images['photo_'+ref+'_'+i].src;
	parties=url_photo.split("_thumb");
	new_url_photo=parties[0]+parties[1];
	window.open("http://www.chalon-nautic.com/photo.php?type="+type+"&ph="+new_url_photo+"&ref="+ref,'','width=640,height=600,menubar=no');
}

function affiche_detail(type,ref) {
	window.open("http://www.chalon-nautic.com/detail_"+type+".php?ref="+ref,'','resizable=yes,scrollbars=yes,width=680,height=430');
}

function impression_detail(type,ref) {
	window.open("http://www.chalon-nautic.com/impression_"+type+".php?ref="+ref,'','resizable=yes,scrollbars=yes,width=680,height=430');
}

function envoi_par_mail(type,ref) {
	// window.open("http://www.rm-autos.com/3gautomobiles/envoi_par_mail.asp?ref="+ref+"&id="+id,'','resizable=yes,scrollbars=yes,width=300,height=400');
	window.open('http://www.chalon-nautic.com/envoi_par_mail_"+type+".php?ref='+ref,'','resizable=yes,scrollbars=yes,width=400,height=430');
}


