function showImagePopup( image, target, width, height )
{

    width  += 40;
    height += 40;
	
	target=target.substr(0,8); // Bezeichnung des Targets darf im IE nicht zu lang werden
	
//	alert(image);
//	alert(target);
	
    Fenster = window.open( image, target, "width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no" );
//	Fenster = window.open( image, "_new", "width=" + width + ",height=" + height + ",toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbar=no" );
	
}

