/**
 *	 Fichier script.js, regroupant les fonctionnalités requises par le site
 *
 * @author : Digital Concept
 * @version : 1.0
 * @source : Easy Web Pack v.3
 * @créé le 16 juin 2005 
 *
 **/

// Appel d'une animation Flash
function addFlash(file,largeur,hauteur)
{ // Fonction gérant l'ajout d'une balise FLA et du code qui va bien
  var flashHTML = "";
  if (navigator.plugins && navigator.mimeTypes.length) 
  { // Netscape/Mozilla
     flashHTML += '<embed type="application/x-shockwave-flash" src="'+arguments[0]+'?'+arguments[4]+'" width="'+arguments[1]+'" height="'+arguments[2]+ '"';
     flashHTML += ' name="movie" type="application/x-shockwave-flash" wmode="transparent" pluginspage="http://www.macromedia.com/go/getflashplayer"></embed>';
   } 
   else 
   { // PC IE
      flashHTML += '<object classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" width="'+arguments[1]+'" height="'+arguments[2]+'">';
      flashHTML += '<param name="movie" value="'+arguments[0]+'" />';
		flashHTML += '<param name="WMode" value="Transparent" />';
      flashHTML += '<param name="flashVars" value="'+arguments[4]+'" />';
      flashHTML += '</object>';
    }
    document.write(flashHTML);	
}

function zoom(file)
{
	var a=window.open("zoom.php?file="+file,"_zoom","width=20, height=20");
}
 
 function imprime()
 {
	 window.print();
 }

 function setQte(id,it)
 {
	  if (it.value==0) window.location.href="devis.php?del="+id;
	 else document.getElementById('iframe').src="iframe_cart.php?qte="+it.value+"&id="+id;
 }

  function setDuree(id,it)
 {
	 if (it.value==0) window.location.href="devis.php?del="+id;
	 else document.getElementById('iframe').src="iframe_cart.php?duree="+it.value+"&id="+id;
 }
