

// globals:

menu=0;


function first_1()
{

document.write('	<div align="center"><center>				');
document.write('	<table border="0" width="950">					');
document.write('	    <tr>				');
document.write('	        <td valign="top" colspan="3" bgcolor="#BFE6FF"><table				');
document.write('	        border="0" cellpadding="0" cellspacing="0" width="100%">				');
document.write('	            <tr>				');
document.write('	                <td><font color="#0080C0" size="5" face="Arial"><strong>Hanneliese				');
document.write('	                Kreissl-Wurth<br><br></strong></font></td>				');
document.write('	                <td><p align="right"><font color="#0080C0"				');
document.write('	                size="2" face="Arial">Qualität für Text und				');
document.write('	                Musik, Sympathie im Detail</font></p>				');
document.write('	                </td>				');
document.write('	            </tr>				');
document.write('	        </table>				');
document.write('	        </td>				');
document.write('	    </tr>				');
document.write('	    <tr>				');
document.write('	        <td valign="top" width="200"><table border="0"				');
document.write('	        width="100%">				');



}







function first_2()
{

document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	            <tr>				');
document.write('	                <td>&nbsp;</td>				');
document.write('	            </tr>				');
document.write('	        </table>				');
document.write('	        <p><br>				');
document.write('	        <br>				');
document.write('	        <br>				');
document.write('	        <br>				');
document.write('	        </p>				');
document.write('	        <table border="0" width="100%" bgcolor="#FFD2E9">				');
document.write('	            <tr>				');
document.write('	                <td><font color="#0080C0" size="2" face="Arial"><strong>Impressum</strong></font></td>				');
document.write('	            </tr>				');
document.write('	        </table>				');
document.write('	        </td>				');


}


function writeMenu(text, link, hasSubmenu)
{
// ---------------------------------------------------------------------------------------------------------------------------------
menu = menu + 1;

displMenu = getIntParam('menu');
ssub = "";
if ((hasSubmenu) && (displMenu != menu)) {
	ssub = " >";
}

document.write('	            <tr>				');
document.write('	                <td id="td1" bgcolor="#FFD2E9" 				');
document.write('	                onmouseover="highlight(this);"				');
document.write('	                onmouseout="delight(this)"><a href="			');

document.write(link + "?menu=" + menu);

document.write('			"><font				');
document.write('	                color="#000000" size="3" face="Arial"><strong><img				');
document.write('	                src="img/note.gif" border="0" width="16" height="20">&nbsp;			');

document.write(text + '&nbsp;' + ssub);

document.write('			</strong></font></a>');
document.write('	            </tr>				');
// ---------------------------------------------------------------------------------------------------------------------------------

}


function writeSubMenu(text, link)
{
// .................................................................................................................................

displMenu = getIntParam('menu');
if (displMenu == menu){

document.write('	            <tr>				');
document.write('	            <td><table cellspacing="0" cellpadding="0" border="0"><tr>				');
document.write('	            	<td width="20">&nbsp;</td>				');
document.write('	                <td width="180" id="td1" bgcolor="#FFD2E9" 				');
document.write('	                onmouseover="highlight(this);"				');
document.write('	                onmouseout="delight(this)"><a href="			');

document.write(link + "?menu=" + menu);

document.write('			"><font				');
document.write('	                color="#000000" size="3" face="Arial"><strong><img				');
document.write('	                src="img/note.gif" border="0" width="16" height="20">&nbsp;			');

document.write(text);

document.write('			</strong></font></a></td>				');
document.write('	            </tr></table></td>			');
document.write('	            </tr>				');
}
// .................................................................................................................................
}



function getParam(bezeichnung)
{
    var lhref = unescape(document.location.href);
    var i = lhref.indexOf(bezeichnung + "=");
    if (i>0)
    {
      l    = lhref.length;
      lb   = bezeichnung.toString().length;
      e    = lhref.substring(i + lb + 1, l).indexOf('&');
      if (e > 0) 
      {
        var result = lhref.substring(i + lb + 1, i + lb + 1 + e);
        return result;
      }
      return lhref.substring(i + lb + 1, l);
    }
    return "";
}


function getBaseURL()
{
    var lhref = unescape(document.location.href);
    var i = lhref.indexOf('?');
    if (i>0)
    {
    	return lhref.substring(0, i);
	}
	return lhref;
}

function getIntParam(bezeichnung)
{
  result = getParam(bezeichnung);
  if (result != "")
  { 
    return parseInt(result);
  }
  return -1;
}

function writePageHeader(text)
{
document.write('	<p><font color="#0080C0" size="4" face="Arial"><strong> ');
document.write(text);
document.write('	</strong></font></p>   ');
}

function writeParagraphHeader(text)
{
document.write('	<p><font color="#0080C0" size="3" face="Arial"><strong>');
document.write(text);
document.write('	</strong></font></p>');
}

function writeParagraphStart()
{
document.write('	<p><font color="#0080C0" size="3" face="Arial"> ');
}


function writeParagraphEnd()
{
document.write('	</font></p>');
}