function winimg(imagesrc, winwidth, winheight, wintitle){
var params='width='+winwidth+',height='+winheight+','
popwin=window.open("","",params)
popwin.document.open()
popwin.document.write('<title>'+wintitle+'</title>'
	+'<body marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>'
	+'<img src="'+imagesrc+'"></body>')
popwin.document.close()
}

function winimgtxt(imagesrc, winwidth, winheight, wintitle, winbgcol, txtfont, txtcol, txt){
var params='width='+winwidth+',height='+winheight+','
popwin=window.open("","",params)
popwin.document.open()
popwin.document.write('<title>'+wintitle+'</title>'
	+'<body bgcolor="'+winbgcol+'" marginheight=0 marginwidth=0 leftmargin=0 topmargin=0>'
	+'<img src="'+imagesrc+'">'
	+'<br><font face='+txtfont+' color="'+txtcol+'">'+txt+'</font>'
	+'</body>')
popwin.document.close()
}
