HMC.Journal = {
showDetailView: function(title, groupId, articleId, version, templateId) {
var url = themeDisplay.getPathMain() + "/journal/view_article_content?cmd=hmcview&groupId=" + groupId + "&articleId=" + articleId + "&version=" + version + "&templateId=" + templateId;
var height = HMC.Util.getBrowserHeight() - 100;
if (height <= 0) {
height = 500;
}
HMC.Popup.open(title, url, 700, height, true, false);
},
showMap: function(title, mapAddress, mapMarker) {
var url = "/html/portal/hmc/google_map.jsp?mapAddress=" + mapAddress + "&mapMarker=" + mapMarker;
var height = HMC.Util.getBrowserHeight() - 100;
if (height <= 0) {
height = 500;
}
HMC.Popup.open(title, url, 700, height, false, false);
}
};
