I installed the warning mod and all works as it should with one exception. I keep getting a JS error:
Error: 'storeObjects' is undefined
Line: 167
The suspect code:
<script language="JavaScript">
<!-- hide from JavaScript-challenged browsers
function openWindowWarning1(url) {
popupWin = window.open(url,'new_page','width=400,height=400')
}
function loadWindow(){
storeObjects;
changecontent;
}
window.onload=loadWindow
// done hiding -->
</script>
<script language="JavaScript" type="text/javascript">
function ChangePage(fnum){
if (fnum == 1) {
document.PageNum1.submit();
}
else {
document.PageNum2.submit();
}
}
</script>
I know very little JS and do not know where to begin with this one? If I remove that line of code "storeObjects;", it gives me the error:
Error: 'changecontent' is undefined
Line: 167