function leere(feld)
{
	if (feld.defaultValue==feld.value) feld.value = "";
}

//////Auto-Select/////////

var currSel = "";

function getSelection()
{
	var str = "";
	if (document.getSelection)	{ str = document.getSelection(); }
	else if (document.selection && document.selection.createRange) { var range = document.selection.createRange(); if (range) str = range.text;}
	else { str = "";}
	if (str != "")currSel = str;
	if (currSel!="")
	{
		document.search.Aussage.value=currSel;
		document.search2.Aussage.value=currSel;
	}
}

if (window.Event) document.captureEvents(Event.MOUSEUP);
document.onmouseup = getSelection;


///////// Rollover //////////

function high(LinkObject)	{
	LinkObject.style.background='#7ABBFF';
}

function low(LinkObject)	{
	LinkObject.style.background='#E3E4E3';
}
function high2(LinkObject)	{
	LinkObject.style.background='#0067C7';
}

function low2(LinkObject)	{
	LinkObject.style.background='#007FE0';
}

///////// Skriptor /////////////
function skriptor(what)
{
	url='skriptor.php';

	if (what==1)
	{
		url='skriptor.php?Aussage='+document.search2.Aussage.value;
	}
	else if (what==2)
	{
		url='skriptor.php?Aussage=Wo+ist+'+document.search2.Aussage.value;
	}
	else if (what==3)
	{
		url='skriptor.php?Aussage=Was+ist+'+document.search2.Aussage.value;
	}

	self.location=url;
}

////////// PopUp Printer ///////////
function opener(id)
{
	window.open("printer.php?nummer="+id,"fenster","width=500,height=350");
}
