<!-- build the pages for the images, so i don't have to have a page for each and every one.function win(file,orientation,title) {        if (orientation == 'horozon') {                var divw = 512;                var divh = 384;                var thew = 524;                var theh = 396;        } else {                var divw = 384;                var divh = 512;                var thew = 396;                var theh = 524;        }        newwin = window.open('','popup' ,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + thew + ',height=' + theh);        newwin.document.write('<html><head><title>' + title + '</title>');        newwin.document.writeln('<link rel="stylesheet" href="../stylish.css" type="text/css" media="screen">');        newwin.document.writeln('</head>');        newwin.document.writeln('<body bgcolor="#000000" text="#999999" link="#3399ff" vlink="#336699" alink="#cc0000" marginwidth="0" marginheight="0" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0">');        newwin.document.write('<img src="' + file + '.jpg" width="' + divw + '" height="' + divh + '" class="fancy" style="margin:0px;" vspace="3" hspace="3" align="middle">');        newwin.document.write('</body></html>');        newwin.document.close();}function writeme(file,orientation,title) {        document.write('<a onclick="win(\'' + file + '\',\'' + orientation + '\',\'' + title + '\');return false;" href="' + file + '.jpg">');        document.write('<img src="' + file + '_th.jpg" width="100" height="100" border="0" class="fancy" vspace="3" hspace="3" style="margin: 15px;">');        document.write('</a>');}function textwin(file,orientation,title) {        if (orientation == 'horozon') {                var thew = 524;                var theh = 470;        } else {                var thew = 550;                var theh = 524;        }        newwin = window.open('','popup' ,'toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=no,resizable=no,width=' + thew + ',height=' + theh);}function textme(file,orientation,title) {        document.write('<a onclick="textwin(\'' + file + '\',\'' + orientation + '\',\'' + title + '\');return true;" href="' + file + '.html" target="popup">');        document.write('<img src="' + file + '_th.jpg" width="100" height="100" border="0" class="fancy" vspace="3" hspace="3" style="margin: 15px;">');        document.write('</a>');}//-->