function open_window(img, w, h, title) {
	if (title==undefined) title="";
	var w = window.open("", "", "width="+w+", height="+h+", toolbar=no, location=no, directories=no, status=no, menubar=no, scrollbars=no, resizable=no");
	w.document.write('<html><head><title>'+title+'</title></head><body style="margin: 0px;">'+
					'<a href="javascript: window.close()">' +
					'<img src="'+img+'" border=0 />'+
					'</a>'+
					'</body></html>');
}