function signshelp2(){

var mybars ='directories=no,location=no,menubar=no,status=no';
mybars += ',titlebar=no,toolbar=no';
var winoptions ='scrollbars=no,width=205,height=330,resizeable=no';
var winfeatures = mybars + ',' + winoptions;
var newWin = open('', 'mywin', winfeatures);


newWin.document.write("<head>" + "<link rel=stylesheet href=../../style/main.css />" + "</head>" + "<body class="marginstyle">");

newWin.document.write("<table border=0>" + "<caption class=small>One-way and intersection signs for Metro Routes</caption>" + "<tr>" + "<td></td>" + "<td class=center>" + "<img src=../../images/onewaynorth.jpg width=15 height=20 />" + "<br />" + "north<br />" + "<img src=../../images/north.gif width=14 height=14 /></td>" + "<td></td>" + "</tr>");

newWin.document.write("<tr><td class=center>" + "<img src=../../images/onewaywest.jpg width=20 height=15 />" + "<br />" + "west<br>" + "<img src=../../images/west.gif width=14 height=14 />" + "</td>" + "<td></td>" + "<td class=center>" + "<img src=../../images/onewayeast.jpg width=20 height=15 />" + "<br />east" + "<br />" + "<img src=../../images/east.gif width=14 height=14 />" + "</td></tr>");

newWin.document.write("<tr>" + "<td></td>" + "<td class=center>" + "<img src=../../images/onewaysouth.jpg width=15 height=20 />" + "<br />" + "south<br />" + "<img src=../../images/south.gif width=14 height=14 />" + "</td>" + "<td></td>" + "</tr>");

newWin.document.write("<tr>" + "<td colspan=3 class=small>" + "Intersection directions are given as seen on a map," + "<br />not as seen from a driver's point of view" + "</td></tr>");

newWin.document.write("</table>" + "</body>");

newWin.document.close();
newWin.focus();
}
