function newImg(URL,w,h,title){
newWindow=window.open(URL,'newWin','toolbar=no,width='+w+',height='+h)
newWindow.window.moveTo(100, 200)
newWindow.document.write('<html><head><meta http-equiv="imagetoolbar" content="no" /><title>'+title+'<\/title><\/head><body background="'+URL+'"><\/body><\/html>')
newWindow.focus()
}