// JavaScript Document

function do_svara_gastbok(GastbokID)
{
	var remote = window.open("", "Gastbok", "resizable=yes,status=no,width=380,height=210,scrollbars=yes");
	remote.location.href = 'popup_svara_gastbok.asp?GastbokID=' + GastbokID
}

function do_popup_text(SidaID)
{
	var remote = window.open("", "Matdagboken", "resizable=yes,status=no,width=380,height=210,scrollbars=yes");
	remote.location.href = 'popup_text.asp?ID=' + SidaID
}

function do_popup_bild(Bild)
{
	var remote = window.open("", "Matdagboken", "resizable=yes,status=no,width=830,height=620,scrollbars=yes");
	remote.location.href = 'popup_bild.asp?Bild=' + Bild
}

function CheckOnline()
{
	var interval = setInterval("makeRequest2('online.asp?rnd=' + Math.random(),'CheckOnline')",30000);
}