function commentopen()
{
	if(document.getElementById) document.getElementById("cc").style.display = "inline";
	if(document.getElementById) document.getElementById("co").style.display = "none";
	if(document.getElementById) document.getElementById("cm").style.display = "inline";   
}

function commentclose()
{
	if(document.getElementById) document.getElementById("cc").style.display = "none";
	if(document.getElementById) document.getElementById("co").style.display = "inline";
	if(document.getElementById) document.getElementById("cm").style.display = "none";
}

function printPage()
{
	if(window.print)
	{
		nowprint = confirm('Diese Seite drucken ?');
		if(nowprint) window.print();
	}
}
