//########################################
// JavaScript POPUP
//########################################
function popup(chemin,nom_fenetre,proprietes)
{
	if (!window.myfenetre)
	{
		var myfenetre=window.open(chemin,nom_fenetre,proprietes);
	}
	else
	{
		myfenetre.close();
		var myfenetre=window.open(chemin,nom_fenetre,proprietes);
	}

	myfenetre.focus();
}

function displaySwf(source, w, h) {
    var swf = "<object classid='clsid:D27CDB6E-AE6D-11cf-96B8-444553540000' codebase='https://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,0,0' height='" + h + "' width='" + w + "' VIEWASTEXT>";
    swf += "<param name='movie' value='" + source + "' />";
    swf += "<param name='quality' value='best'>";
    swf += "<param name='play' value='true'>";
    swf += "<param name='wmode' value='transparent'>";
    swf += "<embed height='" + h + "' pluginspage='https://www.macromedia.com/go/getflashplayer' src='" + source + "' type='application/x-shockwave-flash' width='" + w + "' quality='best' play='true' wmode='transparent'></embed>";
    swf += "</object>";
    document.write(swf);
}
// OPEN POP-UP
function OpenPopUp(url) {
    var left = (screen.width - 900) / 2;
    var top = (screen.height - 675) / 2;
    options = 'width=900, height=675,  top=' + top + ', left=' + left + ', scrollbars=auto,resizable=yes,menubar=no,directories=no,location=no,toolbar=no,status=no';
    //options = 'top='+ top +', left='+ left +', scrollbars=auto,resizable=yes,menubar=no,directories=no,location=no,toolbar=no,status=no';
    var win = window.open(url, '', options);
    //win.resizeTo(800,600);
    return false;
}
