function display(img, title, w, h){
	if(img != ''){
		if(title == undefined)
			title = '';
		if(w == undefined)
			w = 800;
		if(h == undefined)
			h = 600;
		nLangas = window.open("", "", "width="+w+",height="+h);
		nLangas.document.write("<html><head><title>"+title+"</title><style type='text/css'>body{margin:0px}</style></head>\n<body>\n");
		nLangas.document.write("<a href='javascript:window.close()'><img src='"+img+"' border=0 alt='"+title+"'/></a>\n");
		nLangas.document.write("</body>\n</html>");
		nLangas.document.close();
	}
}