function showRendering(baseHref,image) {    var windowName = "rendering";    var features =        'width='        + "640" +        ',height='      + "480" +        ',directories=' + "no" +        ',location='    + "no" +        ',menubar='     + "no" +        ',scrollbars='  + "auto" +        ',status='      + "no" +        ',toolbar='     + "no" +        ',resizable='   + "yes";    window.open (baseHref+"resources/elements/renderWindow.jsp?image=" + escape(image), windowName, features);}function showFloorplan(pdf) {    var windowName = "floorplan";    var features =        'width='        + "640" +        ',height='      + "480" +        ',directories=' + "no" +        ',location='    + "no" +        ',menubar='     + "no" +        ',scrollbars='  + "auto" +        ',status='      + "no" +        ',toolbar='     + "no" +        ',resizable='   + "yes";    window.open (pdf, windowName, features);}function showMap(map, width, height) {    var windowName = "map";	width = eval(width + "+20");	height = eval(height + "+20");    var features =        'width='        + width +        ',height='      + height +        ',directories=' + "no" +        ',location='    + "no" +        ',menubar='     + "no" +        ',scrollbars='  + "no" +        ',status='      + "no" +        ',toolbar='     + "no" +        ',resizable='   + "no";    window.open (map, windowName, features);}function showGallery(gallery, width, height) {    var windowName = "gallery";	width = eval(width);	height = eval(height);    var features =        'width='        + width +        ',height='      + height +        ',directories=' + "no" +        ',location='    + "no" +        ',menubar='     + "no" +        ',scrollbars='  + "no" +        ',status='      + "no" +        ',toolbar='     + "no" +        ',resizable='   + "no";    window.open (gallery, windowName, features);}