function formMessage(cible)
{
	var top=(screen.height-500)/2;
	var left=(screen.width-500)/2;
	if (cible=="") {cible="AquiS";}
	window.open("http://www.soyde.com/_layout/formulaire.php?mode="+cible,"Formulaire","top="+top+",left="+left+",width=500,height=500");
}

function bookMark (urlSite, nomSite)
{
	/* TRAITEMENT DES NAVIGATEURS */
	// internet explorer windows
	if(window.external) {
		window.external.AddFavorite(urlSite,nomSite);
	}
	// internet explorer mac
	if (document.all && (navigator.userAgent.indexOf('Win') < 0)) {
		alert ("COMMAND + B to bookmark " + nomSite + " !");
	}
	// netscape 6.x
	if (window.sidebar) {
		window.sidebar.addPanel(nomSite,urlSite,"");
	}
	// netscape 4.x
	if (document.layers) {
		alert ("CTRL + D to bookmark " + nomSite + " !");
	}

	// op?ra
	if (navigator.userAgent.indexOf('Opera') != -1) {
		alert ("CTRL + T to bookmark " + nomSite + " !");
	}
}

function CheckIsIE()
{
    if  (navigator.appName.toUpperCase() == 'MICROSOFT INTERNET EXPLORER')  { return true;}
    else { return false; }
 }

function printMe() {
	if (CheckIsIE() == true)
	{
    	document.iPage.focus();
		document.iPage.print();
	} else {
        window.frames['iPage'].focus();
        window.frames['iPage'].print();
	}
}

function popup( url,nom,options) {
	if (options!="")
		window.open( url, nom, options);
	else
		window.open( url,nom,'toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width=509,height=327');
}
