// JavaScript Document
	function dispPopup(uri, width, height){

	    var image = new Image(); 
	    image.src = uri;
	    
	    var popup = window.open("", "_blank", "width=" + width + ",height=" + height + ",scrollbars=no,status=no,location=no,toolbar=no,menubar=no,resizable=no");
	    popup.window.document.open();
	    
	    var str = "";
	    	str += '<html><head><title>' + image.alt + '</title></head>';
	    	str += '<body style="margin:0;padding:0;border:0;">';
	    	str += '<img src="' + image.src + '" width="100%" alt="" />';
	    	str += '</body></html>';
	    
	    popup.window.document.write(str);
	    popup.window.document.close();
	    
		
	}

