//WindowCloseKey.init();

function ouvrir_saisie(saisie, ref_bar, ref_num)
{
	//Dialog.alert({url: "choix_saisie.php?saisie="+saisie+"&ref_bar="+ref_bar+"&ref_num="+ref_num, options: {method: 'get'}}, {className: "alphacube", width:700, height:500, okLabel: "Fermer"});
	win = new Window({className: "alphacube", title: "Choix article", width:800, height:600, url: "choix_saisie.php?saisie="+saisie+"&ref_bar="+ref_bar+"&ref_num="+ref_num, destroyOnClose: true, recenterAuto:true}); 
	win.setZIndex(1);
	win.showCenter(true);

}

function modif_fpromo(id, type)
{
	var url = "fpromo.php?type="+type+"&id_p="+id;
	win = new Window({className: "alphacube", title: "Première page", width:500, height:450, url: url, destroyOnClose: true, recenterAuto:false}); 
	win.showCenter(true);
}


function ajoute(pm,name) {

nb=document.getElementById(pm).value;
nb++;
 if (nb>9999) {nb=9999;}
document.getElementById(pm).value=nb;
 }
function enleve(pm,name) {
nb=document.getElementById(pm).value;
nb--;
if (nb<1) {nb=1;}
document.getElementById(pm).value=nb;
}

function tester(p)
{
	alert(p);
}


function catalogue()
{
	win = new Window({className: "alphacube", title: "test", width:850, height:600, url: "catalogue_swf.php", destroyOnClose: true, recenterAuto:false}); 
	win.showCenter(true);
}
