// Displays Random Faculty Book Coverfunction random_text(){};var random_text = new random_text();// Set the number of text strings to zero to startvar number = 0;// Incremental list of all possible Textrandom_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#buffam'><img src='http://creativewriting.uchicago.edu/components/img/cover_buffam.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#raeburn'><img src='http://creativewriting.uchicago.edu/components/img/cover_raeburn.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#pizzolatto'><img src='http://creativewriting.uchicago.edu/components/img/cover_pizzolatto.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#slouka'><img src='http://creativewriting.uchicago.edu/components/img/cover_slouka.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#slouka'><img src='http://creativewriting.uchicago.edu/components/img/cover_slouka2.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#slouka'><img src='http://creativewriting.uchicago.edu/components/img/cover_slouka3.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#slouka'><img src='http://creativewriting.uchicago.edu/components/img/cover_slouka4.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#pizzolatto'><img src='http://creativewriting.uchicago.edu/components/img/cover_pizzolatto2.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#crane'><img src='http://creativewriting.uchicago.edu/components/img/cover_crane.jpg' border='0' /></a>"random_text[number++] = "<a href='http://creativewriting.uchicago.edu/faculty/index.shtml#reddy'><img src='http://creativewriting.uchicago.edu/components/img/cover_reddy.jpg' border='0' /></a>"// Create a random number with limits based on the number// of possible random text stringsvar random_number = Math.floor(Math.random() * number);<!-- Window Pop-Up center -->function NewWindow(mypage, myname, w, h, scroll, tools){   var winl = (screen.width - w) / 2;   var wint = (screen.height - h) / 2;   winprops = 'height='+h+',width='+w+',top='+wint+',left='+winl+',scrollbars='+scroll+',resizable,menubar='+tools;   win = window.open(mypage, myname, winprops);   if (parseInt(navigator.appVersion) >= 4)   {      win.window.focus();   }}