<!--

function gallery(wpic,wcap,vsize,hsize,wtitle,wlocation) {

wscroll='no'
if (!vsize) vsize=265;
if (!hsize) hsize=328;
if (!wcap) wcap= '<I>No caption</I>';
if (!wtitle) wtitle= 'Picture Gallery';
winname=Math.random()+'';
winname= winname.substring(2,8);

if (!wlocation){
wlocation=''
} else {
wscroll='yes';
}

wstat='toolbar=no,location=no,directories=no,status=no,scrollbars=' + wscroll;
wstat += ',resizable=yes,copyhistory=no,width='
wstat += hsize + ',height=' + vsize

viewWin= window.open(wlocation,winname, wstat);

if (!wlocation){

twin=viewWin.document;
cnts = '<HTML><HEAD><TITLE>' + wtitle + '</TITLE>';
cnts += '</HEAD><BODY BGCOLOR="black" TEXT="white" LEFTMARGIN="1" TOPMARGIN="3" MARGINWIDTH="1" MARGINHEIGHT="1"';


cnts +='<P><CENTER><IMG SRC="pics/' + wpic + '"><BR><TT>' + wcap;
cnts += '</TT></CENTER></BODY></HTML>';
twin.write(cnts);
twin.close();
}

}

//-->
