var previousMenuId = null;
function hidePopUp(id) {
var el = document.getElementById(id);
el.style.display= "none";
}
function showPopUp(id) {
var previousEl = document.getElementById(previousMenuId);
if (previousEl != null) {
hidePopUp(previousMenuId);
}
previousMenuId = id;
var el = document.getElementById(id);
if (is_mozilla) {
el.style.left = mousePos.x;
el.style.top = mousePos.y;
}
else {
el.style.pixelLeft = mousePos.x;
el.style.pixelTop = mousePos.y;
}
el.style.display = "block";
}
function picPopup(theURL,winName,width,height,features) {
var window_width = width;
var window_height = height;
var newfeatures= features;
var window_top = (screen.height-window_height)/2;
var window_left = (screen.width-window_width)/2;
newWindow=window.open(''+ theURL + '',''+ winName + '','width=' + window_width + ',height=' + window_height + ',top=' + window_top + ',left=' + window_left + ',features=' + newfeatures + '');
newWindow.focus();
}
function display(myimage) {
html = "<html><head><title>Sz&eacute;pm&#369;v&eacute;szeti M&uacute;zeum</title></head>" +
"<body style='margin: 0; padding: 0;'>" +
"<table border='0' cellpadding='0' cellspacing='0'" +
"width='100%' height='100%'><tr><td align='center'>" +
"<a href='javascript:window.close();'>" +
"<img src='" + myimage + "' name='image' " +
"onload='window.resizeTo((document.image.width + 20),(document.image.height + 70))' " +
"border=0 alt='Bez&aacute;r'></a>" +
"</td></tr></table></body></html>";
popup=
window.open
('','image',
'toolbar=0,location=0,directories=0,menuBar=0,scrollbars=0,resizable=1');
popup.document.open();
popup.document.write(html);
popup.document.focus();
popup.document.close();
}