window.undefined = window.undefined;
window.opera = window.opera;
if(navigator.appVersion.match(/MSIE/)&&!navigator.appVersion.match(/Macintosh/)&&!opera&&!navigator.appVersion.match(/Konqueror/)){
    document.IE=true;
}

window.oe = function (Fehler,Datei,Zeile)
{
	alert('Es ist der JS- Fehler: '+Fehler+', in der Datei: '+Datei+', in der Zeile: '+Zeile+'Aufgetreten.');
};
window.o2 = function ()
{
	return true;
};
window.onerror=window.o2;
window.hideLinkFocus = function(Parent)
{
	var a=$T('a', Parent);
	for(var i=0;i<a.length;i++){
		if(document.IE){
			a[i].onmousedown=function(){this.onfocus=function(){this.blur();};};
			a[i].onmouseout=function(){this.onfocus=function(){};};
			a[i].onmouseup=a[i].onmouseout;
		}
		else {
			a[i].onmousedown=function(){return false;};
		}
	}
};
window.$T = function (tag_name, Parent)
{
	return tag_name != '*'  ? $A((Parent || document).getElementsByTagName(tag_name)) : (document.IE && (navigator.versionNr < 6) ? $A((Parent || document).all) : $A((Parent || document).getElementsByTagName('*')));
};
window.$A = function(array){
	var nArray = [];
	for (var i=0;i<array.length;i++) nArray.push(array[i]);
	return nArray;
};
window.init = function(){
    hideLinkFocus();
}
window.onload = init;
