Sorry I didn't reply for a few days...! It was the weekend!
The contents of the javascript_default.js file is as follows:
//Function to jump to another forum
function ForumJump(URL) {
if (URL.options[URL.selectedIndex].value != "") self.location.href = URL.options[URL.selectedIndex].value;
return true;
}
//Function to open pop up window
function openWin(theURL,winName,features) {
window.open(theURL,winName,features);
}
//Function to open preview post window
function OpenPreviewWindow(targetPage, formName){
now = new Date
//Open the window first
openWin('','preview','toolbar=0,location=0,status=0,menubar=0,scrollbars=1,resizable=1,width=680,height=400')
//Now submit form to the new window
formName.action = targetPage + "?ID=" + now.getTime();
formName.target = "preview";
formName.submit();
}
I dont think its corrupt in any way - its also sat in the Includes folder - just where it should be.... Pop-ups are not blocked on the intranet, neither are cookies. The error occurs on my intranet version of the forum (which I have not tinkered with) - not on this (Web Wiz Forum) one...
Error message is the one that appears in the status bar of IE 5.5. So I'm 99% certain is a javascript error and not an ASP error...
Is this any more help?