Hi again!
This is going to sound random, but after some research, the best explanation we've found for that error is that there's a Javascript error somewhere on your page. Going through your HTML line-by-line, the first (only?) javascript problem we found was in this block:
var win = null;
function NewWindow(mypage,myname,w,h,scroll){
LeftPosition = (screen.width) ? (screen.width-w)/2 : 0;
TopPosition = (screen.height) ? (screen.height-h)/2 : 0;
settings =
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable'
win = window.open(mypage,myname,settings)
}
In the "settings" line (it's on 2 lines) the 2nd line doesn't end with a semi-colon like it should. This would be ok if it was the last line of javascript, but then there's another definition after it for "win = ", which would be bad. It's best to add a semi-colon to the "win" line as well, actually. Can you please update the line (not sure where this is coming from) to:
'height='+h+',width='+w+',top='+TopPosition+',left='+LeftPosition+',scrollbars='+scroll+',resizable';
Hopefully that will get you going. Let us know when that's updated and we can keep looking at the code to see if there's other obvious issues.