function verifyDelete() {
		return confirm("Sind sie sicher das sie dieses Element löschen möchten?");
}

function openM(str1, str2){
  document.location.href = "mailto:" + str1 + "@" + str2;
}

function showPic(strImageSrc, strComment){
	if(document.getElementById('bildimg') && document.getElementById('bildtext')){
		document.getElementById('bildimg').src=strImageSrc;
		document.getElementById('bildtext').innerHTML=strComment;
	}
	void(0);
}

function showImagedown(obj){
	if(obj.style.backgroundPosition=="center top" || obj.style.backgroundPosition=="")
	{
		obj.style.backgroundPosition="center bottom";
	}
	else
	{
		obj.style.backgroundPosition="center top";
	}
}

function showMediumPic(strImageSrc, strComment){
  document.getElementById('jugendanzimg').src=strImageSrc;
  document.getElementById('jugendcomimg').innerHTML=strComment;
	void(0);
}
function showLargePic(){	
	strImageSrc = document.getElementById('jugendanzimg').src.replace("_block","");
	strComment = document.getElementById('jugendcomimg').innerHTML;
	
  document.getElementById('jugendanzimggross').src=strImageSrc;
  document.getElementById('jugendcomimggross').innerHTML=strComment;
  document.getElementById('content_jugend_text').style.display="none";
  document.getElementById('content_jugend_bild').style.display="block";
	void(0);
}
function showText(){
	document.getElementById('content_jugend_bild').style.display="none";
  document.getElementById('content_jugend_text').style.display="block";
  document.getElementById('jugendanzimggross').src="img/blank.gif";
	void(0);
}