function OpenPopUp2(PageURL, strName, iwidth, iheight) {
	var strProperties;
	
	strProperties = 'width=' + iwidth + ',height=' + iheight;
	strProperties = strProperties + ',left=50,top=50,directories=0,hotkeys=1,location=0,menubar=0';
	strProperties = strProperties + ',resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0';
	window.open(PageURL, strName, strProperties);	
}

function OpenPopUpMag(id_reg) {
	var strProperties;
	
	strProperties = 'width=550,height=380';
	strProperties = strProperties + ',left=150,top=150,directories=0,hotkeys=1,location=0,menubar=0';
	strProperties = strProperties + ',resizable=0,scrollbars=0,status=0,titlebar=0,toolbar=0';
	window.open('magasins/magasin.asp?id_reg=' + id_reg, 'magasin', strProperties);
}

function PopUpClient(id_client) {
	var strProperties;
	
	strProperties = 'width=420,height=580';
	strProperties = strProperties + ',left=150,top=150,directories=0,hotkeys=1,location=0,menubar=0';
	strProperties = strProperties + ',resizable=0,scrollbars=1,status=0,titlebar=0,toolbar=0';
	window.open('clients/fiche-' + id_client + '.htm', 'Fiche', strProperties);
}
