
/* Skriver ut kontentan */
function printa()
{
	if (typeof(window.print) != "undefined")
	{
		window.print();
	}
	else
	{
		document.body.insertAdjacentHTML("beforeEnd", "<object id='PrHandle' width=0 height=0 classid='CLSID:8856F961-340A-11D0-A96B-00C04FD705A2'></object>");
		PrHandle.ExecWB(6,2);
	}
}
