 function jump() {
  ziel=document.form1.menu.options[document.form1.menu.selectedIndex].value;
  window.location=ziel;
 }
 
  function jump2() {
  ziel=document.form2.menu.options[document.form2.menu.selectedIndex].value;
  window.location=ziel;
 }
 
  function jump3() {
  ziel=document.form3.menu.options[document.form3.menu.selectedIndex].value;
  window.location=ziel;
 }


 function foc(){
document.news.input.focus();
}

// Begin ClearField
var cleared = 0;
function clearField(field){
if (cleared != 1) {
field.value = "";
cleared=1;}
else {cleared = 0;}
}
// End ClearField

function GrafikAnzeigen(GrafikURL, Breite, Hoehe)
{
	Fensteroptionen="toolbar=0,scrollbars=0,location=0,statusbar=0,menubar=0,resizable=0";

	Grafikfenster=window.open("", "", Fensteroptionen + ',width=' + Breite + ',height=' + Hoehe);
	Grafikfenster.focus();
	Grafikfenster.document.open();
	with(Grafikfenster)
	{
		document.write("<html><head>");
		document.write("<title>Grafikanzeige</title>");
		document.write("</head>");
		document.write("<body leftmargin=\"0\" marginheight=\"0\" marginwidth=\"0\" topmargin=\"0\">");
		document.write("<img border=\"0\" onclick=\"window.close();\" src=\""+ GrafikURL +"\" title=\"Zum Schließen auf das Foto klicken\">");
		document.write("</body></html>");
	}
	return;
}


