function detailVehicule(AU_id)
{
	AU_id	= AU_id.replace(/ /ig,"");
	if( AU_id.length != 0 )
	{
		url	= "/vehicule/detailVehicule.php?AU_id="+AU_id;
		nw	= window.open('','detail','scrollbars=yes,resizable=yes,width=640,height=600');
		nw.location.href	= url;
		nw.focus();
	}
}
function selectVehicule()
{
	if(document.Infos.AU_id.value)	
	{
		nw	= window.open('','infos','scrollbars=yes,resizable=yes,width=650,height=600');
		document.Infos.target	= "infos";
		document.Infos.method	= "POST";
		document.Infos.action	= "/demandes/selectionVehicule.php";
		document.Infos.submit();
		nw.focus();
	}
}
function envoyerAUnAmi()
{
	if(document.Infos.AU_id.value)	
	{
		nw	= window.open('','infos','scrollbars=yes,resizable=yes,width=650,height=600');
		document.Infos.target	= "infos";
		document.Infos.method	= "POST";
		document.Infos.action	= "/vehicule/envoyerAUnAmi.php";
		document.Infos.submit();
		nw.focus();
	}
}
function imprimer()
{
	if(document.Infos.AU_id.value)	
	{
		nw	= window.open('','infos','scrollbars=yes,resizable=yes,width=700,height=764');
		document.Infos.target	= "infos";
		document.Infos.method	= "POST";
		document.Infos.action	= "/vehicule/imprimer.php";
		document.Infos.submit();
		nw.focus();
	}
}

function modifierImage(newImage)
{
	document.imageBase.src=newImage;
}



function afficherGrandeImage(newImage)
{
	if (newImage=='')
	{
		url	= "/vehicule/detailVehiculePhoto.php?image_src="+document.imageBase.src;
		nw	= window.open(url,'','scrollbars=yes,resizable=yes,width=620,height=470');
		
	}
	else
	{
		url	= "/vehicule/detailVehiculePhoto.php?image_src="+newImage;
		nw	= window.open(url,'','scrollbars=yes,resizable=yes,width=620,height=470');
	}
}
