This commit is contained in:
Matthew Wilson 2006-05-02 04:29:22 +00:00
parent 4e1cac6d57
commit 01cfcf74b9

View file

@ -101,7 +101,7 @@ if (!document.all) {
/**
* Initializes popup code on load.
*/
function initPopUp(closeImage) {
function initPopUp() {
// Add the HTML to the body
body = document.getElementsByTagName('body')[0];
popmask = document.createElement('div');
@ -113,7 +113,7 @@ function initPopUp(closeImage) {
'<div id="popupTitleBar">' +
'<div id="popupTitle"></div>' +
'<div id="popupControls">' +
'<img src="'+closeImage+'" onclick="hidePopWin(false);" />' +
'<img src="'+closeImage()+'" onclick="hidePopWin(false);" />' +
'</div>' +
'</div>' +
'<div id="popupFrame"></div>' +