function showObject(div_name) {
    var dS = document.getElementById(div_name);    
    dS.style.display = 'inline';
}

function hideObject(div_name) {    
    var dS = document.getElementById(div_name);    
    dS.style.display = 'none';
}

// Favorites

var urlAddress = "http://www.kerstpakkettenexpress.nl"; 
var pageName = "Kerstpakkettenexpress.nl"; 
function addToFavorites()
{ 	
	if (window.external)
	{ 		
		window.external.AddFavorite(urlAddress,pageName)
	} 
}

// Set target date
TargetDate = "12/25/2012 5:00 AM";
//TargetDate = "05/13/2010 12:00:00 PM";
CountActive = true;
CountStepper = -1;
LeadingZero = true;
DisplayFormat = "<"+"sp"+"an class=\"days\">" + "%%D%%<" + "/sp"+"an>";
FinishMessage = "0";


// Session update
var updateEvery = 30;//Seconds
function sessionUpdated() {
    timer=setTimeout("updateSessionImage()",1000*updateEvery)
}
function updateSessionImage() {
    var randNum = Math.floor(Math.random()*999);
    document.images.keepUpdated.src ="/session.php?img="+randNum;
    sessionUpdated();
}
sessionUpdated();
