// Code by teamware GmbH
// no use without explicit permission of the author
var searchString = document.URL;
var fragezeichen = searchString.lastIndexOf("?");
if(fragezeichen > 0)
{
	printURL = document.URL+"&print=1";
}
else
{
	printURL = document.URL+"?print=1";
}

