function newUserfriendlyWindow(url,width,height,options,name,posX,posY)
{
	if (!url) return false;
	if (!width) width = 900;
	if (!height) height = 300;
	if (!options) options = "scrollbars=yes,menubar=yes,toolbar=no,location=no,status=yes,resizable=yes";
	if (!posX && posX != "0") posX = 20;
	if (!posY && posX != "0") posY = 20;
	if (!name) name = "extWindow";
	
	ok = window.open( url, name, "width=" + width + ",height=" + height + ",screenX=" + posX + ",screenY=" + posY + ",left=" + posX + ",top=" + posY + "," + options );
	if (ok) return false;
	else return true;
}


// ##################################################
// Funktionen:   printit()
// Beschreibung: Druckt Inhalte
// Autor:        Roland Bley
// Parameter:    -
// Rueckgabe:    -
// Aufruf:       printit()
// ##################################################
function printit()
{  
	if (window.print) {
		window.print() ;  
	} else {
		var WebBrowser = '<OBJECT ID="WebBrowser1" WIDTH=0 HEIGHT=0 CLASSID="CLSID:8856F961-340A-11D0-A96B-00C04FD705A2"></object>';
		document.body.insertAdjacentHTML('beforeEnd', WebBrowser);
		WebBrowser1.ExecWB(6, 2);  
		WebBrowser1.outerHTML = "";  
	}
}

