function openBig(title, src, width, height) {  
	var OpenWindow=window.open("", "newwin", "height=600,width=617,scrollbars=1");
	OpenWindow.document.write("<html>")
	OpenWindow.document.write("<html>")
	OpenWindow.document.write("<title>" + title + "</title>")
	OpenWindow.document.write("<style>html, body {margin: 0px; padding: 0px;}</style>")
	OpenWindow.document.write("<html><head></head>")
	OpenWindow.document.write("<body>")
	OpenWindow.document.write("<a href='' onClick='self.close()'><img src='" + src + "' border='0' width='" + width + "' height='" + height + "'></a>")
	OpenWindow.document.write("</html>")
}
