﻿// JScript-Datei


function init()
{ 
}

function showSubMenu(strID)
{
}

function hideSubMenu(strID)
{
}
function showHide(strID)
{
 if("block"==document.getElementById(strID).style.display){
 document.getElementById(strID).style.display = "none";
 } else {
 document.getElementById(strID).style.display = "block";
 }
}

clicked=0;
function newsinputerase(myobject)
{
  if (0==clicked)
  {
   clicked=1;
   myobject.form.email.value="";
  }
}