function popUp(scroll,altLoc,URL,text,view_width,view_height) {
if (!(usepops.popups.checked)){
var look='toolbar=0,scrollbars='+scroll+',location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+',';
popwin=window.open("","",look);
popwin.document.open();
popwin.document.write('<title>Picture Gallery: '+popTitle+'</title><head>');
popwin.document.write('<link rel=StyleSheet href="../../scripts/styles.css" type="text/css" media="screen"></head>');
popwin.document.write('<body bgcolor="#FFFFFF" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">');
popwin.document.write('<center><table cellpadding="0" cellspacing="0" border="0" width="98%"><tr><td style="padding-left: 0pt;">');
popwin.document.write('<center><img src="'+URL+'" vspace="5">');
popwin.document.write('<br>'+text);
popwin.document.write('<form><input type="submit" value="Close" class="button-popups" onClick=\'self.close()\'></form></center>');
popwin.document.write('</td></tr></table></center>');
popwin.document.write('</body>');
popwin.document.close();}
else{
document.location = altLoc;}
}