//### Hover-Funktion bei Datensaetzen die ueber mehrere TRs gehen
function tr_hover( ID, Status ) {
	if( Status==1 ) { document.getElementById( "tr"+ID ).bgColor='#f8f6fa'; }
	if( Status==0 ) { document.getElementById( "tr"+ID ).bgColor=''; }
}

//### Zusammenbau des Mailto um Spam zu verhindern
function mailto( email ){ 
	self.location.href=( 'mailto:'+email.replace(/\_at\_/,'@' ) );
}

//### Popupfunktion zum anzeigen der Bilder aus dem Mediapool
function popup( url, width, height ) {
	var PopWinPosX =( screen.availWidth/2 )-width/2;
	var PopWinPosY =( screen.availHeight/2 )-height/2;
	popWin = window.open( url, 'popWin', 'scrollbars=yes, menubar=no, status=no, toolbar=no, resizable=no, titlebar=no, width='+(width+10)+', height='+(height+10)+', left='+PopWinPosX+', top='+PopWinPosY );
	popWin.focus();
}
