 
 

var border_color		= "492200"	
var background_colors	= "002a7e"	

var view_width_ini 		= 660		
var view_height 	= 500		

var scrollbarS 		= "0"		





function NewWindow(slide, imURL) {
if (slide) {view_width =view_width_ini+120}
else {view_width =view_width_ini}
var winl = (screen.width - view_width) / 2
var wint = (screen.height -  view_height) / 2
var look='toolbar=0,scrollbars=' + scrollbarS + ',location=0,statusbar=0,menubar=0,resizable=1,width='+view_width+',height='+view_height+', top=' + wint + ', left='+winl+',';
popwin=window.open("","gallery",look)
popwin.document.open()
popwin.document.write('<html><head><title>ShenandoahPottery.com</title>')
if (slide) {
popwin.document.write('<script type="text/javascript">')
popwin.document.write('function changeSrc1() {document.getElementById("gallery_image").src="'+imURL['1']+'.jpg"}')
popwin.document.write('function changeSrc2() {document.getElementById("gallery_image").src="'+imURL['2']+'.jpg"}')
popwin.document.write('function changeSrc3() {document.getElementById("gallery_image").src="'+imURL['3']+'.jpg"}')
popwin.document.write('</script>')
popwin.document.write('<style type="text/css"><!--')

popwin.document.write('.button1 {background: url('+imURL['1']+'S.jpg); height:100px; width:100px; margin: 10px 0 0 10px}')
popwin.document.write('.button2 {background: url('+imURL['2']+'S.jpg); height:100px; width:100px; margin: 10px 0 0 10px}')
popwin.document.write('.button3 {background: url('+imURL['3']+'S.jpg); height:100px; width:100px; margin: 10px 0 0 10px}')
popwin.document.write('--></style>')
}
popwin.document.write('</head>')
popwin.document.write('<body bgcolor="#'+background_colors+'" 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>')
if (slide) {
popwin.document.write ('<td width="110" align="left" valign="top">');
popwin.document.write ('<form action="#" method="post">')
popwin.document.write('<input name="1" class="button1" type="button" value=" " onclick="changeSrc1()">')
popwin.document.write('<input name="2" class="button2" type="button" value=" " onclick="changeSrc2()">')
popwin.document.write('<input name="2" class="button3" type="button" value=" " onclick="changeSrc3()">')
popwin.document.write ('</form></td>')}
popwin.document.write('<td align="center" valign="middle"><TABLE cellpadding="0" cellspacing="0" border="1" bordercolor="#' + border_color + '" style="border-collapse:collapse"><tr><td>')
popwin.document.write('<img id="gallery_image" src="http://www.shenandoahpottery.com/'+imURL['1']+'.jpg">')
popwin.document.write('</td></tr>')
popwin.document.write('</table>')
popwin.document.write('</td></tr></table>')
popwin.document.write('</body>')
popwin.document.close()
}









