function GoBack()
{
 self.history.back(1);
}

function DisplayFoto(Pic, ThumbPic, Note)
{
 var PicPath = 'img/fotos/';
 var ThumbPicPath = 'img/fotos/thumbs/';
 
 Pic = PicPath + Pic;
 ThumbPic = ThumbPicPath + ThumbPic;
 
 document.writeln(' <tr><td align="center" colspan="2">');
 document.writeln(' <table border="1" align="center" cellspacing="10" cellpadding="10" frame="box" rules="all" bgcolor="#c4ecff">');
 document.writeln(' <tr bgcolor="#ffffff"><td align="center"><a href="' + Pic + '" target="_new"><img src="' + ThumbPic + '" alt="' + Note + '" border="0" onmouseover="window.status=&#39' + Note + '&#39&#59 return true&#59" onmouseout="window.status=&#39&#39"></a></td></tr>');
 document.writeln(' </table>');
<!-- document.writeln('<br>(-: ' + Note + ' :-)'); -->
 document.writeln('<br>' + Note);
 document.writeln(' </td></tr>');
 }

function Display2Foto(Pic1, Note1, Pic2, Note2)
{
 var PicPath = 'img/fotos/';
 var ThumbPicPath = 'img/fotos/thumbs/';
 
 var ThumbPic1 = ThumbPicPath + 'n' + Pic1;
 Pic1 = PicPath + Pic1;
 var ThumbPic2 = ThumbPicPath + 'n' + Pic2;
 Pic2 = PicPath + Pic2;
 
 document.writeln(' <tr>');
 document.writeln(' <td align="center">');
 document.writeln(' <table border="1" align="center" cellspacing="10" cellpadding="10" frame="box" rules="all" bgcolor="white">');
 document.writeln(' <tr><td align="center"><a href="' + Pic1 + '" target="_new"><img src="' + ThumbPic1 + '" alt="' + Note1 + '" border="0" onmouseover="window.status=&#39' + Note1 + '&#39&#59 return true&#59" onmouseout="window.status=&#39&#39"></a></td></tr>');
 document.writeln(' </table>');
 document.writeln('<br>' + Note1);
 document.writeln(' </td>');
 document.writeln(' <td align="center">');
 document.writeln(' <table border="1" align="center" cellspacing="10" cellpadding="10" frame="box" rules="all" bgcolor="white">');
 document.writeln(' <tr><td align="center"><a href="' + Pic2 + '" target="_new"><img src="' + ThumbPic2 + '" alt="' + Note2 + '" border="0" onmouseover="window.status=&#39' + Note2 + '&#39&#59 return true&#59" onmouseout="window.status=&#39&#39"></a></td></tr>');
 document.writeln(' </table>');
 document.writeln('<br>' + Note2);
 document.writeln(' </td>');
 document.writeln(' </tr>');
 }

