
function BPimgpop( path, popW, popH, winTitle, desc, desc2){
var winstyle='width='+popW+',height='+popH+',resizable=no,left=100,top=100'
BPpop=window.open("","",winstyle)
BPpop.document.open()
BPpop.document.writeln('<html><title>'+winTitle+'</title><body bgcolor=6B6B6B onload="self.focus();" onblur="self.close()"><font color="#FFFFFF" size="-2" face="Verdana"><img src='+path+'><br>'+desc+'<br>'+desc2+'</font></body></html>')
BPpop.resizeTo(popW+30, popH+180)
BPpop.document.close()
}
