
// ONLY USE lowercase FOR ALL OPTIONS
// CHANGE ANY OF THESE VARIABLES TO "no" OR "yes" TO TURN AN OPTION OFF OR ON

var viewer = "no" // yes/FULL SCREEN OR no/POPUP MODE
var view_width = 500 // GALLERY POPUP WIDTH
var view_height = 600 // GALLERY POPUP HEIGHT
var title = "MetalArt Industries";
var img_count = 14;

function popup(url,text) {

if (viewer == "no") {
var look='toolbar=0,scrollbars=0,location=0,statusbar= 0,menubar=0,resizable=0,width='+view_width+',height='+view_height+','
popwin=window.open("","",look)
}
else 
if (viewer == "yes") {
popwin=window.open()
}

popwin.document.open()
popwin.document.write('<title>'+title+'</title><head>')
popwin.document.write('<body bgcolor="#000000" 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="600" ><tr><td align="center">')
popwin.document.write('<center><br>')

popwin.document.write('<table cellpadding=0 cellspacing=0 border=0 style="border-collapse: collapse"><tr>')
popwin.document.write('<td><img src="'+url+'"></td>')
popwin.document.write('</tr>')
popwin.document.write('<tr><td>&nbsp;</td></tr>')
popwin.document.write('<tr>')
popwin.document.write('<td><div id="message" style="color:#ffffff; font-family:Arial"></div></td>')
popwin.document.write('</tr></table>')

popwin.document.write('</td></tr><tr><td valign="bottom" align="center">')
popwin.document.write('<br><form><input type=submit value="Close" class="button-popups" onClick=\'self.close()\'></form><br>')
popwin.document.write('</center>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</body>')
popwin.document.close()

popwin.document.getElementById("message").innerHTML="Image No: " + (text+1)
}


