function OpenWindow(strZiel, strName, intWidth)
{	// If txteintag has a value, the lookup window starts in month of the date 
    
    if ((document.callme.datum.value != "") && (strName == "Auswahl1"))
    {	
		var elemente = document.callme.datum.value.split(".");
		var intMonth = elemente[1];
		var intYear = elemente[2];
		strZiel = strZiel + "&year=" + intYear + "&month=" + intMonth;
    }
    Test = window.open(strZiel, strName, 'width='+intWidth+',height=150,scrollbars=no,resizablel');

   
if (document.all)
	{
 		var ClickX = window.event.x;
		var ClickY = window.event.y;
Test.moveTo(ClickX+window.screenLeft+5, ClickY+window.screenTop-150);
		if (navigator.appVersion.indexOf("MSIE 5")>0 )
		{

			
		}
	}
}
