// Bild anzeigen (PopUp)
function ShowImage ( url )
{
    window.open( url, '_blank', 'toolbar=no,status=yes,scrollbars=yes,resizable=yes' );
}

// Seite anzeigen (PopUp)
function ShowSite ( url )
{
    window.open( url, '_blank' );
}

// Lösch-Hinweis anzeigen
function delanswer( link, question ) {
	var check = confirm( question );

	if ( check != false ) { 
		url( link );
	}
	
	return false;
}

// Zur angegebenen URL wechseln
function url( link ) {
	parent.location.href = link;		
}
