<!--

//  www.everymanslibrarycollecting.com -- slideshow.js
//  Adapted by:  Jeffrey S. Anderson

function slideShow () {
day = new Date();
id = day.getTime();
eval("OpenWindow=window.open('', '" + id + "', 'toolbar=0,scrollbars=1,location=0,statusbar=0,menubar=0,resizable=1,width=1000,height=1000,left = 10,top = 10');");
OpenWindow.document.write("<html><head><title>UNC Wilson Library Everyman's Library Exhibition</title>");
OpenWindow.document.write("<link rel='stylesheet' type='text/css' href='emlstyles.css' >");
OpenWindow.document.write("<script language='JavaScript' type='text/javascript' src='runslideshow.js'></script></head>");
OpenWindow.document.write("<body bgcolor='#669966'><center><form name=slideform>");
OpenWindow.document.write("<table border='0' cellspacing='1' cellpadding='4' bgcolor='#669966' >");
OpenWindow.document.write("</td></tr><tr><td align=center width='750' height='750'>");
OpenWindow.document.write("<img src='images/exhibit/photo01.jpg' name='show'></td></tr>");
OpenWindow.document.write("<tr><td align=center bgcolor='#99CC99' >");
OpenWindow.document.write("<select name='slide' onChange='change();'>");
OpenWindow.document.write("<option value='images/exhibit/photo01.jpg' >UNC Wilson Library");
OpenWindow.document.write("<option value='images/exhibit/photo02.jpg' >Side entrance");
OpenWindow.document.write("<option value='images/exhibit/photo04.jpg' >Exhibit entrance");
OpenWindow.document.write("<option value='images/exhibit/photo05.jpg'>Exhibit hall in perspective");
OpenWindow.document.write("<option value='images/exhibit/photo06.jpg'>Makers & Makings - I");
OpenWindow.document.write("<option value='images/exhibit/photo07.jpg'>Makers & Makings - II");
OpenWindow.document.write("<option value='images/exhibit/photo08.jpg'>World War I & Aftermath");
OpenWindow.document.write("<option value='images/exhibit/photo09.jpg'>Bindings");
OpenWindow.document.write("<option value='images/exhibit/photo10.jpg'>World War II & War Economy");
OpenWindow.document.write("<option value='images/exhibit/photo11.jpg'>Crises & Culmination");
OpenWindow.document.write("</select></td></tr><tr><td align=center bgcolor='#99CC99' >");
OpenWindow.document.write("<input type=button onClick='first();' value='First' >");
OpenWindow.document.write("<input type=button onClick='previous();' value='Prev' >");
OpenWindow.document.write("<input type=button name='slidebutton' onClick='ap(this.value);' value='Play'>");
OpenWindow.document.write("<input type=button onClick='next();' value='Next'>");
OpenWindow.document.write("<input type=button onClick='last();' value='End'>");
OpenWindow.document.write("</td></tr></table></form>");
OpenWindow.document.write("<img src='images/close.jpg' border='1' onclick='self.close();' /></center></body></html>");
OpenWindow.document.close();
}

-->