First of all congrats on this wonderful site.
I am having some problems with the site. It seems that every page on the site shows me an alert box.
After some invetigation I found that problems is due to a javascript code in
http://www.cameralabs.com/assets/iemenu.js
The function errHandler
has a line:
alert("Java Script Error\n"+ "\nDescription:"+sMsg+ "\nSource:"+sUrl+ "\nLine:"+sLine);
Its very irritating to see this prompt on every page.
I assume this was added for debugging purposes. A better way to enable debugging without bugging users would be add something like
window.status = "Java Script Error: "+ " Description:"+sMsg+ " Source:"+sUrl+ " Line:"+sLine;