//******************************************************************************
// Description: Zeigt die kleine Hilfe an (Was-Spalte)
// Remarks: Wird links oben angezeigt.
// Version: 1.0 / 31.10.2006 / M. Derflinger / www.deltavision.ch
//******************************************************************************
function dv_ShowHelp1(sRelPath) {
    var festerattribute = "";
	var sURL = "help1.htm"
	if (typeof sRelPath == "string") { sURL = sRelPath + sURL; }
    fensterattribute="menubar=no,location=no,toolbar=no,status=no,statusbar=no,resizable=yes,left=100,top=100,width=316,height=360";
    win=window.open(sURL, "help1", fensterattribute);
}

//******************************************************************************
// Description: Zeigt die grosse Hilfe (Abkürzungen) an.
// Input: sRelPath: leer oder relative Pfadangabe zu help2.htm, wenn dieses nicht
//   im gleichen Directory steht wie das aufrufende File.
// Remarks: Wird rechts oben angezeigt.
// Version: 1.0 / 04.11.2006 / M. Derflinger / www.deltavision.ch
// hier weiter machen hier weiter machen  .left von Window gibt es nicht.
//******************************************************************************
function dv_ShowHelp2(sRelPath) {
	var festerattribute = "";
	var sURL = "help2.htm"
	if (typeof sRelPath == "string") { sURL = sRelPath + sURL; }
	var W = 350;
	var H = 500;
	var L = screen.availWidth - W;
	var T = 20;
    fensterattribute="menubar=no,location=no,toolbar=no,scrollbars=yes,status=no,resizable=yes,left=" + L + ",top=" + T + ",width=" + W + ",height=" + H;
    win=window.open(sURL, "help2", fensterattribute);
}

