﻿// Ouverture d'un pop-up en cliquant sur une offre
function OpenPopup(url, name, mywidth, myheight) {
    name = "";
	window.open(url, name, 'height='+myheight+', width='+mywidth+', resizable=yes, scrollbars=yes, toolbar=yes, menubar=yes, status=yes, location=yes');
}

//modif pour ne plus avoir de bar d'outils
function OpenPopup(url, name, mywidth, myheight, toolbar) {
    name = "";
	window.open(url, name, 'height='+myheight+', width='+mywidth+', resizable=yes, scrollbars=yes, toolbar='+toolbar+', menubar='+toolbar+', status=yes, location='+toolbar);
}