function kalender(idname, postBack)
{
  
	popUp = window.open('/CmsSundhed/Dialogs/Kalender.aspx?FormNavn=' + document.forms[0].name + 
		'&id=' + idname + '&ValgtDato=' + document.forms[0].elements[idname].value + '&postBack=' + postBack, 
		'popupkalender', 
		'width=165,height=220,left=200,top=250');
}
	
		
function opdaterKalenderDato(formNavn, id, nyDato, postBack)
{
	eval('var theform = document.' + formNavn + ';');
	popUp.close();
	theform.elements[id].value = nyDato;
	if (postBack)
		__doPostBack(id,'');

}

function lukKalender()
{
	self.close();
}