function Open_Link(obj,i,inputStr){

	var winW = 800, winH = 600;

if (parseInt(navigator.appVersion)>3) {
 if (navigator.appName=="Netscape") {
  winW = window.innerWidth;
  winH = window.innerHeight;
 }
 if (navigator.appName.indexOf("Microsoft")!=-1) {
  winW = 800;
  winH = 600;
 }
}
   	var textStr = "";
	if (inputStr.title != null){
		textStr = inputStr.title;}
	else if(inputStr.innerText != null){
		textStr = inputStr.innerText;}

	var copyright=new Date();
	var update=copyright.getYear();
	if (update < 2000) {
		update += 1900;}
	
	newWindow=window.open(''+self.location,'OpenPicture',
	'width=winW,height=winH,menubar=no,toolbar=no,status=yes,location=no,scrollbars=yes,resizable=yes,fullscreen=yes');
	var newContent = '<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">';
	newContent += "<HTML><HEAD><TITLE>Picture Window</TITLE>";
	newContent += '<LINK HREF="Trainsty.css" type="text/css" REL="stylesheet"></HEAD>';
	newContent += "<BODY><CENTER><table><TR><TD class='mat'>";
	newContent += "<img src='" + obj + "' alt='" + textStr + "'>";
	newContent += "</TD></TR></table><br><DIV class='c2'>" + textStr + "</DIV>";
	newContent += "<br><a href='javascript:void(0);' onFocus='this.blur();' onClick='window.close();'"; 
	newContent += " ONMOUSEOVER=" + '"' + "window.status='Close Window'; return true;" + '"' + " ONMOUSEOUT=" + '"' + "window.status=''; return true;" + '"' + ">";
	newContent += "<IMG SRC='images/RETURNER.gif' border=0 align=top width=40 height=40></a>";
	newContent += "<TABLE WIDTH='100%' CELLPADDING=0 CELLSPACING=0 BORDER=0><TR>"
    newContent += "<TD VALIGN=TOP ALIGN=CENTER WIDTH='100%'><font size='2'><br>"
    newContent += "<PRE>";
	newContent += "Copyright &copy; 2000-"+ update + " William Schaeferle <br>";
	newContent += "Document modified: " + document.lastModified + "<br>";
	newContent += "www.billsrailroadpage.com";
    newContent += "</PRE></FONT></TD></TR></TABLE>"
	newContent += "</CENTER></BODY></HTML>";
	newWindow.document.write(newContent);
	newWindow.document.close();
}