/*
Image viewer, for popup window / modified
*/

function popimage(imagesrc,winwidth,winheight){

var look='width='+winwidth+',height='+winheight+','
popwin=window.open("","",look)
popwin.document.open()
popwin.document.write('<title>Barone Image Window</title><body bgcolor="black" bottommargin="0" topmargin="0" leftmargin="0" rightmargin="0" marginheight="0" marginwidth="0"><img src="'+imagesrc+'"></body>')
popwin.document.close()
}

