Thanks for the response! I thought it was maybe relative URLs versus absolute URLs, but no dice. Here's what Mozilla has to say about the errors:
Error: _fv11 has no properties
Source File: http://sky.dnagroup.internal/WebResource.axd?d=aVsgAsdXvihUSwMyPVmQE6mFdsamu2sn0SyWf4p3RXE1RClWebytnzFQlU0HZTCzHkK5cQ5jheFfdVTWreVT7JfWtvw7sTzmTYmmS-t70Cg1&t=632972555440000000
Line: 82
Error: Error in parsing value for property 'display'. Declaration dropped.
Source File: http://sky.dnagroup.internal/Administration/Index.aspx
Line: 0
Error: _fv11 has no properties
Source File: http://sky.dnagroup.internal/WebResource.axd?d=aVsgAsdXvihUSwMyPVmQE6mFdsamu2sn0SyWf4p3RXE1RClWebytnzFQlU0HZTCzHkK5cQ5jheFfdVTWreVT7JfWtvw7sTzmTYmmS-t70Cg1&t=632972555440000000
Line: 82
Here's the relevant function in the WebResource.axd file:
function _fv38(_fv11){
if (!_fv11.firstChild) return null;
if (_fv11.firstChild.nodeType!=3) return _fv11.firstChild;
if (_fv11.childNodes.length > 1) return _fv11.childNodes.item(1);
return null;
} //98
Here's the only other javascript in the masterpage:
function openWin(url,name,param) {
window.open(url,name,param);
return;
}
function openPrint(url) {
window.open(url, 'PrintWin','menubar=yes,toolbars=yes,statusbar=yes,location=no');
return;
}
function swapClass(field,newClass) {
if (document.getElementById)
document.getElementById(field).className = newClass;
else
return;
}