function show_Image(url) {

	var now= new Date();
	var Yr = now.getYear();
	if (Yr < 100) Yr=Yr+2000;
	if (Yr < 1900) Yr=Yr+1900; 
	if (Yr < 2000) Yr=Yr+100;

   document.open();
   document.write("<html><head>");
   document.write("<title>" + url + "</title>");
   document.write("</head>");
   document.write("<link rel=stylesheet type=text/css href='http://fd.swsnet.net/_private/includes/css/generic.css'>");
   document.write("<body>");
   document.write("<table cellpadding=0 cellspacing=0 border=1 width=100%>");
   document.write("<tr><td>");
   document.write("<table cellpadding=4 cellspacing=0 border=0 width=100%>");
   document.write("<tr>");
   document.write("<td class=gray align=left>");
   document.write("<font class=title>" + url + "</font><br><font class=name>Unoffical CFCRS Webpage</font></td>");
   document.write("<td class=gray align=right><font class=link><a href='javascript:history.back()'>Back</a></font></td>");
   document.write("</tr>");
   document.write("</table>");
   document.write("</td></tr>");
   document.write("</table>");
   document.write("<br>");
   document.write("<center>");
   document.write("<img " + "src='" + url + "'>");
   document.write("</center>");
   document.write("<br>");
   document.write("<table cellpadding=0 cellspacing=0 border=1 width=100%>");
   document.write("<tr><td>");
   document.write("<table cellpadding=4 cellspacing=0 border=0 width=100%>");
   document.write("<tr>");
   document.write("<td class=gray align=left>");
   document.write("<font class=title>" + url + "</font><br><font class=name>Unoffical CFCRS Webpage</font></td>");
   document.write("<td class=gray align=right><font class=link><a href='javascript:history.back()'>Back</a></font></td>");
   document.write("</tr>");
   document.write("</table>");
   document.write("</td></tr>");
   document.write("</table>");
   document.write("<div style='font-size: 8pt; font-family: Verdana;' align=right>");
   document.write('Send mail to <a href="mailto:webmaster@swsnet.net">webmaster</a> with questions or comments about this web site.<br>');
   document.write("Copyright &copy; 1996-" + Yr + " SWS/CFCRS");
   document.write("<br>");
   document.write("</div>");
   document.write("</body></html>");
   document.close();
   }


