    // -- made by A1javascripts.com, please keep these credits when using this script
    days = new Array(7)
    days[1] = "Søndag";
    days[2] = "Mandag";
    days[3] = "Tirsdag"; 
    days[4] = "Onsdag";
    days[5] = "Torsdag";
    days[6] = "Fredag";
    days[7] = "Lørdag";
    months = new Array(12)
    months[1] = "jan";
    months[2] = "feb";
    months[3] = "mars";
    months[4] = "april";
    months[5] = "mai";
    months[6] = "juni";
    months[7] = "juli";
    months[8] = "aug";
    months[9] = "sept";
    months[10] = "okt"; 
    months[11] = "nov";
    months[12] = "des";
    today = new Date(); day = days[today.getDay() + 1]
    month = months[today.getMonth() + 1]
    date = today.getDate()
    year=today.getYear(); 
if (year < 2000)
year = year + 1900;
//For nedtellingsscript:
	TargetDate = "07/30/2008 06:00 PM";
		BackColor = "";
		ForeColor = "black";
		CountActive = true;
		CountStepper = -1;
		LeadingZero = true;
		DisplayFormat = "Stor&aring;sfestivalen starter om: %%D%% dager, %%H%% timer, %%M%% minutter, %%S%% sekunder";
		FinishMessage = "It's partytime ;-) Stor&aring;sfestivalen er i gang!";

    document.write ("<font style='font-size: 10px; color: #ffffff;' face='Verdana' >"+ day + " " + date + ". " + month + "  " + year );
    // -- end hiding

/**
* Function that enables the user to share a link on nettby.no
*
* @param string title
* @param string url
* @param string description
* @return boolean
*/
function nettby_link_share(title, url, description) {
	nettby_link_share_window = window.open('http://www.nettby.no/user/edit_link.php?name=' + escape(title) + '&url=' + escape(url) + '&amp;description=' + escape(description), 'edit_link', 'scrollbars=no,width=450,height=430');
	return false;
}
