function pdf_location(SingleFull, filelocation)
	{
	var Archiv_Host = "";
	var Single = "/DAV/Archiv/einzelne/";
	var komplett = "/DAV/Archiv/komplette/";

	// ----------------------- One-2-One ----------------------------
//	var Archiv_Host = "http://132.195.96.3";

	if (SingleFull == "einzelne")
		{
		window.location = Archiv_Host + Single + filelocation;
		}
	if (SingleFull == "komplette")
		{
		window.location = Archiv_Host + komplett + filelocation;
		}
	}

function counter_location(parameter)
	{
	var Counter_Host = "";
	var Counter_Path = "/Scripts/PHP/Counter/";
	var Counter_Prog = "counter.php";

	var retVal = "" + Counter_Host + Counter_Path + Counter_Prog + parameter;
	document.write("<img SRC='"+ retVal +"' NOSAVE height=28 width=98 align=ABSCENTER>");
	}

