function getCookie(NameOfCookie)
{ if (document.cookie.length > 0)
{ begin = document.cookie.indexOf(NameOfCookie+"=");
if (begin != -1)
{ begin += NameOfCookie.length+1;
end = document.cookie.indexOf(";", begin);
if (end == -1) end = document.cookie.length;
return unescape(document.cookie.substring(begin, end)); }
}
return null;
}



function setCookie(NameOfCookie, value, expiredays)
{ var ExpireDate = new Date ();
ExpireDate.setTime(ExpireDate.getTime() + (expiredays * 24 * 3600 * 1000));
document.cookie = NameOfCookie + "=" + escape(value) +
((expiredays == null) ? "" : "; expires=" + ExpireDate.toGMTString());
}



function delCookie (NameOfCookie)
{ if (getCookie(NameOfCookie)) {
document.cookie = NameOfCookie + "=" +
"; expires=Thu, 01-Jan-70 00:00:01 GMT";
}

}

var nydatum = new Date();
var nyYear = nydatum.getYear();
var nyMonth = nydatum.getMonth();
var nyDate = nydatum.getDate();
var nyDay = nydatum.getDay();
if(nyYear<1000) nyYear+=1900;

dag=new Array("Söndagen","Måndagen","Tisdagen","Onsdagen","Torsdagen","Fredagen","Lördagen")
txtDay=dag[nyDay];

manad=new Array("Januari","Februari","Mars","April","Maj","Juni","Juli","Augusti","September","Oktober","November","December")
txtMonthName=manad[nyMonth];

document.write ("<table width='800' cellpadding='0' cellspacing='0' border='0' align='center' height='78'>");
	document.write ("<tr>");
		document.write ("<td valign='top' align='left'><a href='http://www.hittaboken.nu'><IMG SRC='pics/loggo.gif' height='75' width='300' ALT='Loggo' border='0'></a></TD>");
		document.write ("<td valign='top' align='right'><IMG SRC='pics/p1x1.gif' height=75 ALT='Linser top right'></TD></tr>");
		document.write ("<tr><td valign='top' style='BACKGROUND-image: url(pics/gray3.jpg); background-repeat:repeat-y;'><Div class=sidfot>&nbsp;&nbsp;" + txtDay + " den " + nyDate + " " + txtMonthName + " " + nyYear + "&nbsp;&nbsp;&nbsp;</Div></TD>");
		document.write ("<td valign='top' align='right'><Div class=sidfot>&nbsp;&nbsp;&nbsp;" + "<em>En del av Bokia - Sundsvall</em>" + "</Div></TD>");
	document.write ("</tr>");
	document.write ("<tr>");
		document.write ("<td colspan='2' valign='middle' style='BACKGROUND-image: url(pics/gray3.jpg); background-repeat:repeat-y;'><center><a href='http://www.hittaboken.nu'><IMG SRC='pics/button_home.jpg' height='30' width='30' ALT='hem' border='0'></a>&nbsp;&nbsp;&nbsp;<a href='bokfraga.asp'><IMG SRC='pics/button_search.jpg' height='30' width='76' ALT='sök' border='0'></a><a href='information.asp'><IMG SRC='pics/button_info.jpg' height='30' width='78' ALT='info' border='0'></a><IMG SRC='pics/p1x1.gif' height='5' ALT='p1x1'></center></TD>");
	document.write ("</tr>");
document.write ("</table>");

