/*
 Pop Up window variables  
*/

var navWindow = null;

function Statistics() {
navWindow = window.open('http://stats.premierleague.com', 'Chat', 'scrollbars=no,width=720,height=580,left=150,top=120')
}

function Crossword() {
navWindow = window.open('http://www.planetfootball.com/UserIncludes/crossword/detect.asp', 'Crossword', 'scrollbars=no,width=640,height=590,left=210,top=70')
}

function Live() {
navWindow = window.open('http://score.planetfootball.com/scorecentre.html', 'Live', 'scrollbars=no,resizable=no,width=700,height=525,left=210,top=70')
}

function Quiz() {
navWindow = window.open('http://www.quiz.fanbanta.com/quiz10.aspx', 'Quiz', 'scrollbars=yes,width=700,height=600,left=210,top=70')
}

/* 
Add-to-favorites Script
*/

//configure the two variables below 
var bookmarkurl="http://www.relegation.co.uk"
var bookmarktitle="R&B"

function addbookmark(){
if (document.all)
window.external.AddFavorite(bookmarkurl,bookmarktitle)
}

   
//  date
    dayName = new Array("", "Monday", "Tuesday", "Wednesday", "Thursday", "Friday", "Saturday", "Sunday")
    monName = new Array("January", "February", "March", "April", "May", "June", "July", "August", "September", "October", "November", "December")
    now = new Date        
    
    var strDay;
        if ((now.getDate() == 1) || (now.getDate() != 11) && (now.getDate() % 10 == 1)) 		// Correction for 11th and 1st/21st/31st
        	strDay = "st ";
        else if ((now.getDate() == 2) || (now.getDate() != 12) && (now.getDate() % 10 == 2)) 	// Correction for 12th and 2nd/22nd/32nd
        	strDay = "nd ";
        else if ((now.getDate() == 3) || (now.getDate() != 13) && (now.getDate() % 10 == 3)) 	// Correction for 13th and 3rd/23rd/33rd
        	strDay = "rd ";
        else
        	strDay = "th ";
