Anyone find the cause of the problem? I need to fix this up tonight, but can figure this one out
Here's a functions.js that opens the popup...I don't see anything wrong with this but perhaps I might have missed something?
Code:
// Opens Game Console.
function openConsole(myURL)
{
newWin = window.open(myURL,"game","width=770,height=520,left=0,top=0,status=no,scrollbars=no,menubar=no,resizable=no")
}
// Provides date/time stamp for anti-caching of Flash SWF files.
var curDateTime = new Date()
var curHour = curDateTime.getHours()
var curMin = curDateTime.getMinutes()
var curSec = curDateTime.getSeconds()
var curTime =
((curHour < 10) ? "0" : "") + curHour
+ ((curMin < 10) ? "0" : "") + curMin
+ ((curSec < 10) ? "0" : "") + curSec
Come to think of it, probably a db error...I am going to have a look at that later.
Tia,
-Brian
__________________
Made2Own
Last edited by Brian07002; 09-08-2008 at 05:19 PM..
|