<!--
/*****************************************
* if_lib.js                               *
*                                        *
* Copyright 1999 by InterFokus           *
* Web address: http://www.InterFokus.dk  *
* Last update: July 6, 2000.             *
*                                        *
*****************************************/


function DisplayClientDate() 
{
	var this_month = new Array(12);
	this_month[0]  = "Januar";
	this_month[1]  = "Februar";
	this_month[2]  = "Marts";
	this_month[3]  = "April";
	this_month[4]  = "Maj";
	this_month[5]  = "Juni";
	this_month[6]  = "Juli";
	this_month[7]  = "August";
	this_month[8]  = "September";
	this_month[9]  = "Oktober";
	this_month[10] = "November";
	this_month[11] = "December";
	var today = new Date();
	var day   = today.getDate();
	var month = today.getMonth();
	var year  = today.getYear();
	if (year < 1000) 
	{ 
	year += 1900;
	}
  	return(day+" "+this_month[month]+" "+year);
}

//-->

