/*
'-------------------------------------------------------------------------
' newWindow.js
'-------------------------------------------------------------------------
'
' Copyright     (C) 2001  ib-tool GmbH
'
' Titel         neue Fenster öffnen
'
'-------------------------------------------------------------------------
'
'               Version:                Author:                 Date:
' Ident.        1A                      MB					11.06.2004
'               (created)				
'																							
'-------------------------------------------------------------------------
'
' Beschreibung:	div. Window öffnen
'-------------------------------------------------------------------------
*/

function newWinCRM()
{
	var win;
	if (checkWindows(browserSystem()) == "XP") {
 		win=window.open("http://www.ib-tool.ch/crm/start.asp", "KINFO_ibt",
						"width=1012,height=600,left=5,top=5,resizable=1,scrollbars=1,titlebar=no,toolbar=yes");
	}
	else{
   		win=window.open("http://www.ib-tool.ch/crm/start.asp", "KINFO_ibt",
						"width=1006,height=600,left=5,top=5,resizable=1,scrollbars=1,titlebar=no,toolbar=yes");
	}
}

function newWinDynamisch(filestring,xWert,yWert,lWertp,tWert,rWert,sWert,menuWert,statusWert,wName,pFlag)
{     
  var attribute = "width="+xWert+",height="+yWert+",left="+lWertp+",top="+tWert+",resizable="+rWert+",scrollbars="+sWert+",menubar="+menuWert+",status="+statusWert+"";
  var parameter = "?parm=openwin";
  var url = filestring;
  
  if (pFlag==1) {
    url = url.concat(parameter);
  }
/*  alert(attribute); */
/* alert(url); */
  window.open(url, wName, attribute); 
}

function newWinDemo()
{
	var win;
	if (checkWindows(browserSystem()) == "XP") {
 		win=window.open("http://www.ibtproject.ch/sysdemo/ibt_demo/start.asp", "ibtdemo",
						"width=1012,height=600,left=5,top=5,resizable=1,scrollbars=1,titlebar=no,toolbar=yes");
	}
	else{
 		win=window.open("http://www.ibtproject.ch/sysdemo/ibt_demo/start.asp", "ibtdemo",
						"width=1006,height=600,left=5,top=5,resizable=1,scrollbars=1,titlebar=no,toolbar=yes");
	}
}
	
