function Detail(tl)
 {
   Showtitle = document.getElementById("1").title;
   ShowRef = document.getElementById("1").href;

   document.write ("<body background='../images/Blmrb.gif' link='darkblue' alink='darkblue' vlink='darkblue' style='font-family:arial'>");
   document.write ("<center>");
   document.write ("<big><font color='red'>" + Showtitle + "</font></big><br><br>");
   document.write ("<b><a href='" + ShowRef + "'>");
   document.write ("<img src='");
   document.write (ShowRef);
   document.write ("' height=450>");
   document.write ("</a>");
   document.write ("<br><br>");
   document.write ("<b><a href='" + ShowRef + "'>" + "View / Download Full Size Image</a></b>");
   
   document.write ("<br /><br /><a href='photo.htm'><font color='darkred'>Back to Album</font></a>");
   
   document.write ("</center>");
   document.write ("</body>");
 }

function Detail2(tl)
 {
   Showtitle = document.getElementById("1").title;
   ShowRef = document.getElementById("1").href;
   ShowRef2 = ShowRef.replace(/bg/, "tg");

   document.write ("<body background='../images/Blmrb.gif' link='darkblue' alink='darkblue' vlink='darkblue' style='font-family:arial'>");
   document.write ("<center>");
   document.write ("<big><font color='red'>" + Showtitle + "</font></big><br><br>");
   document.write ("<b><a href='" + ShowRef + "'>");
   document.write ("<img src='");
   document.write (ShowRef);
   document.write ("' height=450 id='01'>");
   document.write ("</a>");
   document.write ("<br><br>");
   document.write ("<b><a href='" + ShowRef);
   document.write ("'>");
   document.write ("View / Download Full Size Image</a></b> &nbsp; &nbsp; &nbsp; &nbsp;");
   document.write ("<b><a href='" + ShowRef2 + "'");
   document.write (" onMouseOver='document.getElementById(\"01\").src=\"" + ShowRef2 + "\"'");
   document.write (" onMouseOut='document.getElementById(\"01\").src=\"" + ShowRef + "\"'" + ">View / Download Full Size Image With Labels</a>");
   
   document.write ("<br /><br /><a href='photo.htm'><font color='darkred'>Back to Album</font></a>");
   
   document.write ("</center>");
   document.write ("</body>");
 }