// Formattage du titre d'un TOPO (selon la résolution)

var VarLogo = "";
var VarTitre = "";
var VarTitre2 = "";
var VarSousTitre = "";
var VarMaj = "";
var VarAuteur = "";
var VarSorties = "";
var VarButton = "";
var VarDiapo = "";
var VarVideo = "";

// formattage du titre en mode display *********************************************************************
function FormatTitre()
{
   if (screen.width<80)
   {
	document.write('        <P align = "center"><img border="0" src=' + VarLogo + ' width="84" height="43">');
	document.write('        <br> <font color="Black" size="6" face="Arial">' + VarTitre + '</font></B></U>');
	if (VarTitre2 != "")
		document.write('        <br> <font color="Black" size="6" face="Arial">' + VarTitre2 + '</font></B></U>');
	if (VarAuteur != "")
	  document.write('      <br><img border="0" src="X09x_Logo_auteur.gif" width="28" height="33">' + VarAuteur + '<BR>');
	document.write('        <br>  M&agrave;j ' + VarMaj + '&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;');
	document.write('        <A HREF="http://belledonne38.com/" target="main" ><CITE>&copy;Belledonne38</CITE></a>');
	document.write('        <HR>');
   }
   else
   {
	document.write('<div align="center">');
	document.write('  <table border="0" width="846" height="37">');
	document.write('    <tr>');
	document.write('      <td width="105" height="37">');
	document.write('        <U><B><img border="0" src=' + VarLogo + '></B></U>');
	document.write('      </td>');
	document.write('      <td width="550" height="37"> <p align="center">');
	document.write('        <U><B><font color="Black" size="5" face="Arial">' + VarTitre + '</font></B></U>');
	if (VarTitre2 != "")
		document.write('        <U><B><font color="Black" size="5" face="Arial">' + VarTitre2 + '</font></B></U>');
	if (VarSousTitre != "")
		document.write('      <br><font color="Black" size="3" face="Arial">' + VarSousTitre + '</font>');
	document.write('      </td>');
	document.write('      <td width="100" height="37"> <p align="center">');
	document.write('        M&agrave;j ' + VarMaj + '<BR>');
	if (VarAuteur != "")
	  document.write('      <img border="0" src="X09x_Logo_auteur.gif">' + VarAuteur + '<BR>');
	document.write('        <A HREF="http://belledonne38.com/" target="main" ><CITE>&copy;Belledonne38</CITE></a>');
	document.write('      </td>');
	if (screen.width<300)
   	{
	    document.write('    </tr>');
	    document.write('  </table>');
	    document.write('</div>'); 
	    if (VarButton != "")
		{
			document.write('        <form method="POST"');
			if (VarSorties != "")
				document.write('          action="Sorties_Topo.php?File="' + VarSorties + '">');
				else
				document.write('          action="Sorties_Topo.php?File="' + VarButton + '">');
			document.write('          <input type="submit" value="Liste sorties" name="B3">');
			document.write('        </form>');
		}
	}
	else
	{
		
		document.write('      <td style="font-family: Arial, Helvetica, sans-serif; font-size: 9pt" width="80">');
	    document.write('<A HREF="javascript:window.print()" title="Impression du topo"><IMG SRC="X00x_ButImpr.gif" border="0"></A> &nbsp;');
		if (VarSorties != "")
			document.write('<A HREF="Sorties_Topo.php?File=' + VarSorties + '" title="Liste des sorties du topo"><IMG SRC="X00x_ButSorties.gif" border="0"></A>');
	    if (VarButton != "")
			document.write('<br><A HREF="X80_Carte.php?LoadTopo=' + VarButton + ' ?AffBoutons=NON" title="Localisation sur la carte"><IMG SRC="X00x_ButLocalisation.gif" border="0"></A> &nbsp;');
			else
			document.write('<br>');
	    if (VarDiapo != "")
			document.write('<A HREF="' + VarDiapo + '/Diaporama.php" title="Diaporama"><IMG SRC="X00x_ButDiapos.gif" border="0"></A>');
		document.write('      </td>');
	    document.write('    </tr>');
	    document.write('  </table>');
	    document.write('</div>'); 
	    document.write('<hr>'); 
	}
   }
}

// formattage du titre en mode impression *********************************************************************
function FormatTitrePrint()
{
	document.write('<div align="center">');
	document.write('  <table border="0" width="100%" height="37">');
	document.write('    <tr>');
	document.write('      <td width="105" height="37">');
	document.write('        <U><B><img border="0" src=' + VarLogo + ' width="84" height="43"></B></U>');
	document.write('      </td>');
	document.write('      <td width="2272" height="37"> <p align="center">');
	document.write('        <U><B><font color="Black" size="5" face="Arial">' + VarTitre + '</font></B></U>');
	if (VarTitre2 != "")
		document.write('        <U><B><font color="Black" size="5" face="Arial">' + VarTitre2 + '</font></B></U>');
	if (VarSousTitre != "")
		document.write('      <br><font color="Black" size="3" face="Arial">' + VarSousTitre + '</font>');
	document.write('      </td>');
	document.write('      <td width="277" height="37"> <p align="center">');
	document.write('        M&agrave;j ' + VarMaj + '<BR>');
	if (VarAuteur != "")
	  document.write('      <img border="0" src="X09x_Logo_auteur.gif" width="28" height="33">' + VarAuteur + '<BR>');
	document.write('        <A HREF="http://belledonne38.com/" target="main" ><CITE>&copy;Belledonne38</CITE></a>');
	document.write('      </td>');
    document.write('    </tr>');
    document.write('  </table>');
    document.write('</div>'); 
    document.write('<hr>'); 
}
