// Javascript zum Nachbilden der 'hover'-Aktion beim IE
function init_ie_hover() { 
	if (navigator.appName.match("Microsoft Internet Explorer") && navigator.appVersion.substr(0,3) < '7.0' ) { 
		// nur fuer IE < 7 erforderlich
		var para = document.getElementsByTagName('a');
		for(var i=0;i<para.length;i++) {
			if(para[i].className=='connection_reject_popup') {
				var element = para[i].firstChild;
				if('DIV'==element.tagName) {
					element.parentElement.onmouseover = 
						function() {
							this.firstChild.style.display = 'block'; 
							this.firstChild.style.zIndex=1000;
						}
					element.parentElement.onmouseout = 
						function() { 
							this.firstChild.style.display = 'none';
							this.firstChild.style.zIndex=0;
						}
					element.parentElement.onfocus = 
						function() {
							this.firstChild.style.display = 'block'; 
							this.firstChild.style.zIndex=1000;
						}
					element.parentElement.onblur = 
						function() { 
							this.firstChild.style.display = 'none';
							this.firstChild.style.zIndex=0;
						}
				}
			}
		}
	}
}


function init() {
  if( init_ie_hover ) {
    init_ie_hover();
  }
//  delaySubmit( new Array( 'senden', 'senden_btn' ), 3 );
}

window.onload = init;

