function showpic (whichdir, whichpic, thespecies, thetext)
{
document.write("<html>");
document.write("<head>");
document.write("<link rel='stylesheet' href='../website/aussiebutterflies.css' type='text/css'>");
document.write("</head>");
document.write("<body topmargin=2>");
if(thespecies == "Canadian Butterflies") {
    document.write("<div id='headercanada'>");
} else {
    document.write("<div id='header'>");
}
document.write("<SPAN class='headertext'> " +thespecies+ " </span>" );
document.write("</div>");
document.write("<div id='mainbit'>");
document.write("<center>");
document.write("<br style='height: 2px'>");
document.write("<table cellspacing=0 cellpadding=0 width=650 height=487 background='" +whichdir+ "/" +whichpic+ "_n.jpg'>");
document.write("<tr>");
document.write("<td class='nimage' width=650 height=487>");
document.write("<A HREF='javascript:history.go(-1);'>");
document.write("<img width=650 height=487 border=0 src='../website/copyright.gif'>");
document.write("</A>");
document.write("</td></tr></table>");
document.write("<br>");
document.write("<SPAN class=normaltext>" +thetext+ "</span>" );
document.write("</div>");
document.write("</body>");
document.write("</html>");
}
