<!--
	function buildarr(n)  {
    	 this.length = n
 	    return this
	}
	months = new buildarr(12)
	months[1] = "Januari"
	months[2] = "Februari"
	months[3] = "Mars"
	months[4] = "April"
	months[5] = "Maj"
	months[6] = "Juni"
	months[7] = "Juli"
	months[8] = "Augusti"
	months[9] = "September"
	months[10] = "Oktober"
	months[11] = "November"
	months[12] = "December"

	function customDateString(oneDate)  {
    	var Month1	= months[oneDate.getMonth() + 1]
    	var Year1 = oneDate.getYear()
    	if (Year1 < 2000) // Y2K Fix, Isaac Powell
	Year1 = Year1 + 1900;
     	return oneDate.getDate()  + " " + Month1 +	" " + Year1
}

// -->
<!--//
function ordpop(adres)
{
var i
i = window.open("","","width=640,height=540,status=1,top=100,left=150,scrollbars=1");
i.location=adres ;
}

// -->
