preImg = lnx("http://www.galiciadivision.com/_photos");

document.writeln("<script language=javascript src=\"photos.js\"></script>");

document.writeln("<table cellpadding=1 cellspacing=0 "
+ "style=\"position:absolute; top:0; left:18; visibility:hidden;\" id=view>"
+ "<tr><td align=right><table cellpadding=1 cellspacing=0>"
+ "<tr><td bgcolor=ffffdd style=\"font-size:8pt; font-family:Courier New;\" "
+ "align=center width=48 height=16><a target=_self href=\"javascript:cph()\" "
+ "style=\"color:000088\"><b>CLOSE</b></a></td></tr></table></td></tr>"
+ "<tr><td bgcolor=black><table cellpadding=1 cellspacing=0>"
+ "<tr><td bgcolor=ffffdd><div id=IOC></div></td></tr>"
+ "<tr><td bgcolor=ffffdd><div id=TXT></div></td></tr>"
+ "</table></td></tr></table>");

/* View Photo */

function vph(image) {

document.all.view.style.visibility = "visible";

x=0; while(photos[x]!=image) x+=4;
width = photos[x+1]; height = photos[x+2];

document.all.IOC.innerHTML = "<img style=\"position:absolute\" "
+ "src=\"../picture.gif\" width=" + (width+2) + " height=" + (height+2) + ">"
+ "<img src=\"" + preImg + "/" + PhotoDir + "/" + photos[x] + ".jpg\" height=" + height + " width=" + width + " border=1>";

document.all.TXT.innerHTML = "<table cellspacing=0 cellpadding=0 "
+ "style=\"margin-top:2px; margin-bottom:4px; margin-left:6px; margin-right:6px;\"><tr>"
+ "<td style=\"font-size:10.5pt; font-family:Times New Roman; color:black;\" width="
+ (width-10) + ">" + photos[x+3] + "</td></tr></table>";

}

/* Close Photo */

function cph() { document.all.view.style.visibility = "hidden"; history.back(); }
