function MoreInfoPopup(txt,w,h){
newWind=window.open('','','width='+w+',height='+h+',resizable=1')
output="<html><head><title>More Info</title></head>"
output+="<body bgcolor=\"#ffffff\" text=\"#4f4e4e\">"
output+="<span style=\"font: 10px Verdana, Arial, Helvetica, sans-serif\">"
output+=txt
output+="</span></body></html>"
newWind.document.write(output)
newWind.document.close()
newWind.focus()
}

