function changeimg(id, stat)
{
	bnr = id - 1;
	aktbild = document.images[bnr].src;
	eaktbild = aktbild.split("_");
	if(stat == 1)
	{
		nbild = eaktbild[1].replace(/off/, "over");
	}
	else
	{
		nbild = eaktbild[1].replace(/over/, "off");
	}
	bild = eaktbild[0] + "_" + nbild;
	document.images[bnr].src = bild;
}

function checknsend()
{
	document.forms[0].submit();
}

function hwin()
{
	window.open("html/hwin.htm", "hwin", "width=400,height=200");
}
