<!-- BEGIN

var close_button 	= "yes"		// CLOSE BUTTON yes/no
var border_color	= "000000"	// PICTURE OUTLINE COLOR
var background_color	= "FFFFFF"	// VIEWER BACKGROUND COLOR
var view_width 		= 600		// GALLERY POPUP WIDTH
var view_height 	= 430		// GALLERY POPUP HEIGHT

function popUp(URL) {

var look='toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+','
popwin=window.open("","",look)
//popwin=window.open("","")
popwin.document.open()
popwin.document.write('<html><head><title>Men Following Christ Gallery</title>')
popwin.document.write('<link rel=StyleSheet href="globalstyle.css" type="text/css" media="screen">')
popwin.document.write('</head>')
popwin.document.write('<body bgcolor="#'+background_color+'" leftmargin="0" rightmargin="0" topmargin="0" bottommargin="0" marginheight="0" marginwidth="0">')
popwin.document.write('<TABLE cellpadding=0 cellspacing=0 border=0 width="100%" height="100%" ><tr><td align="center">')

popwin.document.write('<TABLE cellpadding="0" cellspacing="6" border="1" bordercolor="#' + border_color + '" style="border-collapse: collapse"><tr><td>')
popwin.document.write('<img src="'+URL+'" name="pic" class="zoom"><br>')
popwin.document.write('</td></tr></table>')
popwin.document.write('<br>')
popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>')

if (close_button == "yes") {
popwin.document.write('<form style="margin: 0px"><input type="button" value="Close" class="button-popups" onClick=\'self.close()\'>&nbsp;</form>')
}

popwin.document.write('</td></tr></table>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</body></html>')
popwin.document.close()
}

function goToURL() { history.go(-1); }


//  End -->
