View Single Post
Old 09-19-2012, 02:26 AM   PM User | #4
AndrewGSW
Senior Coder

 
Join Date: Apr 2011
Location: London, England
Posts: 2,120
Thanks: 15
Thanked 354 Times in 353 Posts
AndrewGSW will become famous soon enough
You have an unmatched bracket:
Code:
//this function checks flag and redirects accordingly
function redirect() 
{
if(!count)
location.href = 'error.html';
else
location.href = 'acknowledgement.html';


} 
// DELETE THIS LINE return true;
// AND THIS LINE }
I haven't looked beyond this.

Please edit your OP to wrap the code in [ CODE ] tags.
__________________
"I'm here to save your life. But if I'm going to do that, I'll need total uninanonynymity." Me Myself & Irene.
Validate your HTML and CSS
AndrewGSW is offline   Reply With Quote