/*
 * Copyright 2007 by 2S-IT: IT-Professionals (http://www.2s-it.de)
 * Author: Joachim Schlöffel <js@2s-it.de>
 */

function centerElem(elem, param) {
	if(myParent = elem.getParent()) {
		pCoords = myParent.getCoordinates();
		eCoords = elem.getCoordinates();
		if(param != 'horizontal')
			if(pCoords.height > eCoords.height) {
				space = pCoords.height - eCoords.height;
				elem.setStyle('margin-top', Math.round(space/2)+'px');
			}
		if(param != 'vertical')
			if(pCoords.width > eCoords.width) {
				space = pCoords.width - eCoords.width;
				elem.setStyle('margin-left', Math.round(space/2)+'px');
			}
	}
}
function FensterOeffnen (Adresse) {
    MeinFenster = window.open('https://secure.spendenbank.de/kreditkarten/karte.php?verwendungszweck=1779&other_lang=true&oid=5244884', "Spenden", "scrollbars=yes,width=550,height=705,left=50,top=0");
    MeinFenster.focus();
}

