<!-- Begin POP-UP SIZES AND OPTIONS CODE


// ONLY USE lowercase FOR ALL OPTIONS

var border_color	= "000000"	// PICTURE OUTLINE COLOR
var background_color	= "FFFFFF"	// VIEWER BACKGROUND COLOR
var view_width 		= 675		// GALLERY POPUP WIDTH
var view_height 	= 500		// GALLERY POPUP HEIGHT
var slideshow_width 	= 725		// SLIDESHOW POPUP WINDOW WIDTH
var slideshow_height 	= 525		// SLIDESHOW POPUP WINDOW HEIGHT
var FAQ_width 		= 550		// FAQ WINDOW WIDTH
var FAQ_height 		= 425		// FAQ WINDOW 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.document.open()
popwin.document.write('<html><head><title>Product Details</title>')
popwin.document.write('<link rel=StyleSheet href="coolstyle.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="0" border="1" bordercolor="#' + border_color + '" style="border-collapse: collapse"><tr><td>')
popwin.document.write('<img src="'+URL+'" name="show"><br>')
popwin.document.write('</td></tr></table>')
popwin.document.write('<br>')

popwin.document.write('<TABLE cellpadding="0" cellspacing="0" border="0"><tr><td>')
popwin.document.write('<form style="margin: 0px"><input type="button" value="Close" onmouseover="this.className=\'buttonon-popups\'" onmouseout="this.className=\'button-popups\'" 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()
}




//  End -->