// code javascript


//  class fenetre

function Fenetre(TITRE, HTML)
{
	var tbl = document.createElement("TABLE");
	tbl.id = 'idPourFermerLaFausseFenetre';
    tbl.style.background = 'url(../images/fenetre_fond_gris.png) repeat';
    tbl.style.position = 'fixed';
    tbl.style.top = '0px';
    tbl.style.left = '0px';
    tbl.style.width = '100%';
    tbl.style.height = '100%';
    var tbody = document.createElement("TBODY");
    var tr = document.createElement("TR");
    var td = document.createElement("TD");
    td.align = 'center';
    td.innerHTML = '<div style="width: 900px; height: 550px; overflow: auto;"><table cellSpacing="0" cellPadding="0" style="border:1px solid #000000">' +
						'<tr>' +
							'<td style="color:#ffffff;background:url(../images/fenetre_header.png) repeat-x;height:44px;padding-left:10px" align="left">' +
								'<h2 style="margin:5px 0 0 0">'+TITRE+'</h2>' +
							'</td>' +
							'<td style="background:url(../images/fenetre_header.png) repeat-x;height:44px;padding-right:10px" align="right">' +
								'<img src="../images/fenetre_crois.png" style="cursor:pointer" onmouseover="this.src=\'../images/fenetre_crois_h.png\'" onmouseout="this.src=\'../images/fenetre_crois.png\'" onclick="document.body.removeChild(document.getElementById(\'idPourFermerLaFausseFenetre\'))" />' +
							'</td>' +
						'</tr>' +
						'<tr>' +
							'<td colspan="2" style="background:#f2f2f7;padding:5px">'+HTML+'</td>' +
						'</tr>' +
					'</table></div>';
	
    tr.appendChild(td);
    tbody.appendChild(tr);
    tbl.appendChild(tbody);
    document.body.appendChild(tbl);
}


function bddfixed(HTML)
{
	var tbl = document.createElement("TABLE");
	tbl.id = 'idPourFermerLaFausseFenetre';
    tbl.style.background = 'url(images/fenetre_fond_gris.png) repeat';
    tbl.style.position = 'fixed';
    tbl.style.top = '0px';
    tbl.style.left = '0px';
    tbl.style.width = '100%';
    tbl.style.height = '100%';
    var tbody = document.createElement("TBODY");
    var tr = document.createElement("TR");
    var td = document.createElement("TD");
    td.align = 'center';
    td.innerHTML = HTML;
	
    tr.appendChild(td);
    tbody.appendChild(tr);
    tbl.appendChild(tbody);
    document.body.appendChild(tbl);
}
