Hi,
Try to enable physical JavaScript files first. That way you will get a number of JavaScript files generated in the folder you specify:
http://www.essentialobjects.com/ViewDoc.aspx?t=InstallationAndDeployment%2fdeploy.htmlOnce you get that going, run the page and let it to hit the error again, write down the name of the JavaScript file.
Use notepad to open the JavaScript file and edit the place that causes the error, change it from:
if(a.nodeType==1)
to:
if(a && (a.nodeType==1))
That should elimiate the error. Please give it a try and let us know how it goes.
Thanks!