/********************************************************************************************************************
ZommPhoto(src,h,w)
******************************************************************************************************/
function ZommPhoto(src,h,w){
	wPopup=window.open(src,'Zoom','left=5,top=5,height='+h+',width='+w+',location=no,scrollbars=auto,resizable=yes,menubar=no,status=no,toolbar=no')
	wPopup.focus();
}

function ConfirmeSuppression(str){
	var msg = false;
	msg = confirm('Supprimer définitivement '+str+' ?')
	if(msg==false){document.body.cursor='default';return false;}
	else{document.body.style.cursor='wait';return true;}
}

