function viewImage(url, img_width, descripcion) {
	var page = Liferay.Util.viewport.page();

	var html =
	"<div class='amarillo' style='background-color:#E9AF2A; width: 100%;_margin-right: -30px;'>" +
	"     <div class='amarillo' style='display: table; width: 100%; clear: both; margin-bottom: 10px; /*float: right; background-color:#E9AF2A; color:white;*/ font-weight:normal;'> " +
	"          <div style='margin-top: 10px;float: left;width: 60px;'>" +
	"               <img alt='image-title' src='/bus-theme/images/rutes/rutes_image_titol.png'>" +
	"          </div>" +
	"          <div style='margin-top: -7px;float: left;'>" +
	"               <h3>" + descripcion + "</h3>" +
	"          </div>" +
	"          <div>" +
	"                <div class='amarillo' align='center' style='_background-color:#E9AF2A;'>" +
	"                     <img src='" + url + "' style='margin-left:auto; margin-right:auto;' />" +
	"                </div>" +
	"          </div>" +
	"     </div>" +
	"</div>";

	var popup = Liferay.Popup(
		{
			width: img_width + 20,
			modal: true,
			noDraggable: true,
			noTitleBar: true,
			message: html,
			messageId: 'image',
            onClose: function() {}
		}
	);

	jQuery(popup).addClass('image-popup');

}
