function mouseText(a,color){
if(color =="false"){
color="";
}else{
color="#00B1C2";
}
if(document.all){
document.all("aussicon").innerHTML=a;
document.all("aussicon").style.color=color;
}
if(document.getElementById){
document.getElementById("aussicon").innerHTML=a;
document.getElementById("aussicon").style.color=color;
};
return true;
}
function Summe(a,b){
return (a*b)/100;
}
function onBody(){
if(readCOOKIE("fontSize")!=null && readCOOKIE("fontSize")!=false){
//alert(readCOOKIE("fontSize")+"ok");
var val=readCOOKIE("fontSize").split(":");
fontSize(val[1],val[0]);
}
}
function fontSize(size,a){
//alert(a+"ww");
if(document.all && navigator.appVersion.indexOf("MSIE")>-1){
if(a==false){
var a=eval(document.body.currentStyle.fontSize.replace(/em/,""));
a=Summe(a,eval(size));
}
document.body.runtimeStyle.fontSize=a+"em";
}else if(document.getElementsByTagName ){
if(a==false){
var a=eval(window.getComputedStyle(document.getElementsByTagName("html")[0].lastChild, null).getPropertyValue("font-size").replace(/px/,""));
a=Summe(a,size);
}
document.getElementsByTagName("html")[0].lastChild.style.fontSize=a+"px";
}else if(document.all){
if(a==false){
var a=eval(document.body.currentStyle.fontSize.replace(/em/,""));
a=Summe(a,eval(size));
}
document.body.runtimeStyle.fontSize=a+"em";
}
setCookie("fontSize",a+":"+size,0,"/");
//alert(readCOOKIE("fontSize"));
}
function readCOOKIE(cname){
var Cookies=document.cookie;
//alert(Cookies.length+'readcookie');
var a;
for (a=0;a<Cookies.length;a++)
{
var b=Cookies.split("=");


if(b[0]==cname){
//alert (b[0]+name+"teset");
//inhalt=b.split(",");
//alert(b[1]+'readcookie');
return unescape(b[1]);
break;

}else if(b[0]!=cname){
b[0]="";
return false;
}
}
return null;
}
function setCookie(cookieName,cookieValue,nDays,cPfad) {
//alert(cookieName+cookieValue+nDays+'setcookie');
 var today = new Date();
 var expire = new Date();
var path =  "/"; 
var domain = ""; 
var secure =  "";
expire.setTime(nDays);

 var cook = cookieName+"="+escape(cookieValue);
//cook +="; domain=" + domain;
 if(nDays!=0){
cook +="; expire="+expire;
 }
cook +="; path="+path;

//cook +="; secure="+secure;
document.cookie=cook;
 }

function targetWrite(link){
var img='<img src="/img/blank.gif" alt="new Window:'+link+'" />';
document.write('<a href="'+link+'" onclick="window.open(this.href);return false">'+img+'</a>');
}
function googleWrite(link,nr){
var img='<img src="'+link+'img/googlemap.gif" alt="google map" />';
if(navigator.appVersion.indexOf("MSIE")>-1){
document.write('<a href="#" onclick="javascript:wopen(\''+link+'\',\''+nr+'\');">'+img+'</a>');


}else{
document.write('<a href="#" onclick="javascript:wopen(\''+link+'\',\''+nr+'\');">'+img+'</a>');
}
}
function wopen (uri,nr)
{
var win_awidth="570";
var win_aheight="400";
return window.open(""+uri+"googlemap/map-"+nr+".html","","left=50,top=50,width=570,height=400");
}
function FocusE(formN,e){
document.forms[formN].elements[e].focus();
}
function zError()
{
return true;
}