function warnung(objLink, strHREF, text){
	if(confirm(text)){
		objLink.location = strHREF;
	}
}

