function popup_img (img,title,w,h) {
	var win = open("", "displayWindow", "width=" + w + ",height=" + h + ",status=no,toolbar=no,menubar=no,scrollbars=no,resizable=no");
    win.document.open();
  	win.document.writeln('<html><head><title>' + title + '</title></head><body link="#800000" vlink="#800000"  background="" bgcolor="#FFF0E0">\n<p align="center">');
	win.document.writeln('<img onClick="window.close()" src="/images/' + img + '.jpg" alt="' + title + '"><p>\n');
	win.document.writeln('</body></html>');
    win.document.close();  
}

