self.name = "MusikKlier";


function MP_open_window(URL,wWidth,wHeight,wTop,wLeft) {
	FensterAdm = window.open(URL,"ADM","toolbar=no,location=no,directories=no,scrollbars=yes,statusbar=no,menubar=no,resizable=no,width="+ wWidth +",height="+wHeight+",left="+wLeft+",screenX="+wLeft+",top="+wTop+",screenY="+wTop);
	FensterAdm.focus();
}

function MP_open_Newsletter(URL) {
	window.open(URL,"ADM_Newsletter","toolbar=no,location=no,directories=no,scrollbars=yes,statusbar=no,menubar=no,resizable=no,width=100,height=100,left=10,screenX=10,top=10,screenY=10").focus();
}

function MP_close(ID) {
	document.getElementById(ID).style.display='none';
}

function MP_closeLate(ID) {	
	window.setTimeout("MP_close('"+ID+"')",1800);
}


function MP_Delete(URL,ID,ref,pg) {
	var x = confirm("Soll dieser Eintrag wirklich gelöscht werden?")
	if (x) {
	rURL = URL+"?ID="+ID+"&ref="+ref+"&pg="+pg;
	MP_open_window(rURL,200,200,100,100);
	}
}
function Impressum() {
	WinImpr = window.open("impressum.htm","Impressum","toolbar=no,location=no,directories=no,scrollbars=yes,statusbar=no,menubar=no,resizable=no,width=490,height=430,left=15,screenX=15,top=15,screenY=15");
	WinImpr.focus();
}