Image

// I fixed this. It was a leftover <-- that hid part of the code.




Can someone tell me why this works in Mozilla but not IE?

function enlarge(name) {
	var height = document.images[name].height;
	var width = document.images[name].width;
	window.open(document.images[name].src,"enlargeImage",
        "height=" + height + ", width=" + width + ", status=no, toolbar=no, menubar=no, location=no, scrollbars=yes, resizable=yes");
}


Is it as simple as a browser issue? If so, is there way to alleviate this? Is it possible that my IE java plug-in isn't as up to date as my Mozilla plug-in?

Any comments are appreciated.