var newWin
function launchWin(winUrl,winName,winX,winY,winFeatures){
        newWin=window.open(winUrl,winName,'width='+winX+',height='+winY+','+winFeatures)
        newWin.moveTo((screen.width-winX)/2,(screen.height-winY)/2)
        
}


function openWin(winUrl){
        newWin=window.open(winUrl)     
}

function launchWin_full(winUrl){
		var hoehe = screen.height - 80;
		var breite = screen.width - 50;
        newWin=window.open(winUrl,'Adminbereich','width='+breite+',height='+hoehe+',resizeable=no,status=no,menubar=no,locationbar=no,scrollbars=yes')      
		newWin.moveTo((screen.width-breite)/2,0)
}