function popup( href, name, h, l ) { var hauteur = Math.round( ( screen.availHeight - h ) / 2 ); var largeur = Math.round( ( screen.availWidth - l ) / 2 ); var popup = window.open( href, name, 'toolbar=0,location=0,directories=0,status=0, scrollbars=1,resizable=1,menubar=0,top='+hauteur+',left='+largeur+',width='+l+',height='+h); popup.focus(); return false; } function setQuantity(idproduit) { if( $('quantity') && $('quantity').value>0 ) { var q = $('quantity').value; } if( idproduit>0 && q>0) { window.opener.location='index.php?page=orderbasket&idproduit='+idproduit+'&quantite=' + q +'&add=basket'; window.close(); } } function addRealprods(idrealisation) { window.opener.location='index.php?page=orderbasket&idrealisation='+idrealisation+'&prodassoc&add=basket'; window.close(); } function MoteurRechercheAvance(type) { if( type == true ){ if( $('rechercheavancee') && $('btrechercheavancee') ){ $('rechercheavancee').setProperty('style',''); $('btrechercheavancee').setText('Recherche avancée (fermer)'); $('btrechercheavancee').setProperty('onclick','javascript:MoteurRechercheAvance(false);'); } }else{ if( $('rechercheavancee') && $('btrechercheavancee') ){ $('rechercheavancee').setProperty('style','display:none'); $('btrechercheavancee').setText('Recherche avancée (ouvrir)'); $('btrechercheavancee').setProperty('onclick','javascript:MoteurRechercheAvance(true);'); } } }