Any idea if anything is wrong with any of these javascripts? These are the scripts on my index.php (I sent myself a new Pm so I get the javascript error message, then pressed "view source", then looked for scripts.
Code:
<script language="JavaScript">
<!--
function confirm_newpm() {
input_box=confirm("You have a new private message. Click OK to view it, or cancel to hide this prompt.");
if (input_box==true) { // Output when OK is clicked
second_box=confirm("Open in new window?\n\n(Press cancel to open your Inbox in the current window.)");
if (second_box==true) {
window.open('private.php?s=','pmnew','width=600,height=500,menubar=yes,
scrollbars=yes,toolbar=yes,location=yes,directories=yes,resizable=yes,top=50,left=50');
} else {
window.location="private.php?s=";
}
} else {
// Output when Cancel is clicked
}
}
// -->
</script>
Code:
<body onload="java script:confirm_newpm()" bgcolor="#000000" text="#000000" id="all" leftmargin="10"
topmargin="10" marginwidth="10" marginheight="10" link="#000020" vlink="#000020" alink="#000020">
Code:
<script language="JavaScript">
<!-- Begin
pmBox.bgColor='#060B01" background="evimages/titlebg.gif';
setInterval("Timer()", 300);
x=1;
function Timer() {
set=1;
if(x==0 && set==1) {
pmBox.bgColor='#DEE3D7';
x=1;
set=0;
}
if(x==1 && set==1) {
pmBox.bgColor='#C0C0FF';
x=0;
set=0;
}
}
// End -->
</script>