function csHyperlink(sType,sHref,sTarget,sWidth,sHeight,sToolBar,sParam) {
        // Ex :  sType = "image";
        //       sHref = "/images/image1.jpg";
	var sTopic = "";
	var sClick = "";
	var sLang= "";

	var sFeatures = "";

    var lPosSeparator = 0;	
	var sToolBarParam = sToolBar;
	var sScrollBar = "";
	// sToolBar	
	//   Ex : yes / no / toolbar=no&scrollbar=yes
	if (sToolBarParam.indexOf("=") > 0) {
	  lPos = sToolBarParam.indexOf("toolbar=");
	  if (lPos > -1) {
	    if (sToolBarParam.length > lPos) {
	      lPosSeparator = sToolBarParam.indexOf("&", lPos + 1);
	      if (lPosSeparator > -1) {
	        sToolBar = sToolBarParam.substring(lPos + 8, lPosSeparator);	
	      } else {
	      	sToolBar = sToolBarParam.substring(lPos + 8, sToolBarParam.length);
	      }
	    }
	  }
	  
	  lPos = sToolBarParam.indexOf("scrollbar=");
	  if (lPos > -1) {
	    if (sToolBarParam.length > lPos) {
	      lPosSeparator = sToolBarParam.indexOf("&", lPos + 1);
	      if (lPosSeparator > -1) {
	        sScrollBar = sToolBarParam.substring(lPos + 10, lPosSeparator);	
	      } else {
	      	sScrollBar = sToolBarParam.substring(lPos + 10, sToolBarParam.length);
	      }
	    }	
	  }
	}

	if (sType == 'shopping_add') {
		sHref = "panier.aspx?pa_id=" + sParam ;
		sWidth = 720;
		sHeight = 700;
		sToolBar = "yes";
		sScrollBar = "yes";
	}
        sFeatures = sFeatures + "toolbar=" + sToolBar + ",";        
        sFeatures = sFeatures + "status=" + sToolBar + ",";
        sFeatures = sFeatures + "location=" + sToolBar + ",";
        sFeatures = sFeatures + "menubar=" + sToolBar + ",";
        if (sToolBar == "no") {
          sFeatures = sFeatures + "directories=" + sToolBar + ",";
        }
        if (sType == "image") {
          //sFeatures = sFeatures + "scrollbars=" + "no" + ",padding=0,";
          sFeatures = sFeatures + "scrollbars=" + sScrollBar + ",padding=0,";
          
        } else {
          //sFeatures = sFeatures + "scrollbars=" + "yes" + ",";
          sFeatures = sFeatures + "scrollbars=" + sScrollBar + ",";
        }
        sFeatures = sFeatures + "resizable=" + "yes" + ",";
        sFeatures = sFeatures + "width=" + sWidth + ",";
        sFeatures = sFeatures + "height=" + sHeight;

        if (sType == "back") {
            history.back();
          } else {
              //sHref = "/cgi-cs/cs.waimage.displayimage?image_name=" + sHref
              if (sTarget == "popup") {
              		if (sHref.indexOf("?") > 0 ) {
              			sHref = sHref + "&print=impression&popup=true";
              		} else {
              			sHref = sHref + "?print=impression&popup=true";
              		}
              }
              dlg = window.open (sHref,"displayWindow",sFeatures) 
              dlg.focus();
          }

      }
      function afficherPanier() {
      	var sHref;
      	var sFeatures = "";
      	
      	sHref = "panier_achat.asp?lang=1";
      	dlg = window.open (sHref,"displayWindow",sFeatures) 
        dlg.focus();
      }      