

function WordsWindow()
{
    PhotoWindow = window.open("","Words","status=no,scrollbars=yes,width=400,height=500");
    PhotoWindow.focus();
}

function InfoWindow()
{
    PhotoWindow = window.open("","Info","status=no,scrollbars=yes,width=300,height=300");
    PhotoWindow.focus();
}

function photo_window(loc,w,h)
{
    //PhotoWindow = null;
    var total = 4;
    next = (loc%total)+1;
    prev =  loc-1 == 0?total:loc-1;
    winw = w + 25;
    winh = h + 90;
    PhotoWindow3 = window.open("","Images","status=no,width="+winw+",height="+winh);
    PhotoWindow3.document.open();
    PhotoWindow3.document.write("<html><head><title>Milton Busker</title>");    
    PhotoWindow3.document.write("<LINK REL=\"stylesheet\" HREF=\"css/default.css\" TYPE=\"text/css\">");
    PhotoWindow3.document.write("<body bgcolor=\"#6A8399\"><table width=\"400\" border=\"0\">");
    PhotoWindow3.document.write("<tr><td><img src=\"images/space.gif\" width=\"1\" height=\"1\"></td>");
    PhotoWindow3.document.write("<td><img src=\"images/space.gif\" width=\""+w+"\" height=\"1\"></td></tr>");
    PhotoWindow3.document.write("<tr><td><img src=\"images/space.gif\" width=\"1\" height=\""+h+"\"></td>");
    PhotoWindow3.document.write("<td align=\"center\" valign=\"middle\"><img name=\"imag\" src=\"images/milton_press"+loc+".jpg\"></td></tr>");
    PhotoWindow3.document.write("<tr><td><img src=\"images/space.gif\" width=\"1\" height=\"1\"></td>");
    PhotoWindow3.document.write("<td align=\"center\" valign=\"middle\"><a class=\"botnav\" href=\"java");
    PhotoWindow3.document.write("script:window.close();\">close</a></td></tr>");
    PhotoWindow3.document.write("</table></body></html>");
    PhotoWindow3.document.close();
    PhotoWindow3.focus();
    return 1;

}

