var toggle = true;


function showMenu() {
	if(toggle) {
		document.getElementById('menu_portfolio').style.visibility = 'visible';
         }
         else
         	document.getElementById('menu_portfolio').style.visibility = 'hidden';
         toggle = !toggle;
}


function deletionAlert() {
	if(document.listForm.listID.value > 0)
		if(confirm("EINTRAG LÖSCHEN\n\nSind Sie sicher, dass Sie den Eintrag endgültig löschen wollen?\n(Diese Aktion kann nicht rückgängig gemacht werden!)"))
         		document.form.listForm.submit();
}

function showimage(src, width, height) {
   mywindow = open(src, 'imagewindow', 'locationbar=no,status=no,menubar=no,resizable=no,width='+width+',height='+height+',screenX=0,screenY=0,dependent=yes,scrollbars=no');
   mywindow.focus();
}