function affichage_popup(nom_de_la_page, width, height, title)
{
	if (height == '') height = 600;
	if (width == '') width = 200;
	if (title == '') title = "Popup";
	
	var url = nom_de_la_page;
	if (nom_de_la_page.indexOf('?') != -1) {
		url += "&popup=true";
	} else {
		url += "?popup=true";
	}
	
	
	var params = 'height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no';
	window.open(url, "Popup_ISIC", params);
}

function affichage_popup_assurance(nom_de_la_page, width, height, title)
{
	if (height == '') height = 600;
	if (width == '') width = 200;
	if (title == '') title = "Popup";
	
	var url = nom_de_la_page;

	var params = 'height='+height+', width='+width+', toolbar=no, menubar=no, scrollbars=yes, resizable=yes, location=no, directories=no, status=no';
	window.open(url, "Popup_ISIC", params);
}
