function openWindow(url, hoehe, breite)
{
	F1 = window.open(url, 'F1', 'toolbar=no,scrollbars=yes,resizable=no,width='+ breite +',height='+ hoehe +',screenX=100,screenY=100,left=100,top=100');
    F1.focus();	
}

function openWindow_NoScrolling(url, hoehe, breite)
{
	F1 = window.open(url, 'F1', 'toolbar=no,scrollbars=no,resizable=yes,width='+ breite +',height='+ hoehe +',screenX=100,screenY=100,left=100,top=100');
    F1.focus();	
}
