

		function newWindow(img) {		

		newWindow = null		 

		newWindow = window.open("", "newWin", "width=550,height=600,scrollbars = yes")

		newWindow.document.write("<BODY ONBLUR='window.close();'>")

		newWindow.document.write("<img src = " + img + "><br><\/br><A HREF ='javascript:self.close()'><h2>close<\/h2><\/a>")

    newWindow.document.close()

		history.go(0) // Refresh the page		

    }


