function openWindowAdmin(Url,winName,height,width) {
	window.open(Url,winName,'scrollbars=yes,toolbar=no,status=no,resizable=yes,width='+width+',height='+height+'');
}

function drucken(url) {
	window.open(url,'print','scrollbars=yes,toolbar=no,status=no,resizable=yes,width=700,height=700');
}




function openWindowAdmin(url,winName) {
	var width = 950;
	var height = 568;
	if ((document.all) && (window.offscreenBuffering) && (!window.XMLHttpRequest)) {
		width = 949;
		height = 560;
	}
	if ((document.all) && (window.offscreenBuffering) && (window.XMLHttpRequest)) {
		width = 949;
		height = 565;
	}
	window.open(url,winName,'scrollbars=no,toolbar=no,status=no,resizable=no,width='+width+',height='+height+'');
}

function checkTuut() {
	alert('juhu');
}

