/* =======================================
Copyright 1998 - 2010 - E Net Arch
This program is distributed under the terms of the GNU
General Public License (or the Lesser GPL).
======================================= */
var ENetArch =
{
ContactTypes :
{
nFolderID : 0,
nPos : 0,
onCheckID : function (me) { this.nPos = me.value; },
List : function () { location="List.php?nFolderID=" + this.nFolderID + "&"; } ,
New : function () { location="New.php?nFolderID=" + this.nFolderID + "&"; } ,
View : function () { location="View.php?nFolderID=" + this.nFolderID + "&nPos=" + this.nPos + "&"; } ,
Edit : function () { location="Edit.php?nFolderID=" + this.nFolderID + "&nPos=" + this.nPos + "&"; } ,
Delete : function () { location="Delete.php?nFolderID=" + this.nFolderID + "&nPos=" + this.nPos + "&"; } ,
Times : { nTime : { onChange : function () {} } } ,
Lengths : { nLength : { onChange : function () {} } } ,
AddNew : function (me)
{
me.method="post";
me.action="add.php?nFolderID=" + this.nFolderID + "&";
me.submit;
} ,
Update : function (me)
{
me.method="post";
me.action="update.php?nFolderID=" + this.nFolderID + "&nPos=" + this.nPos + "&";
me.submit;
} ,
},
Calendar :
{
dSelected : function (thsDate)
{
var nPos = ENetArch.ContactTypes.nPos;
if (nPos != 0)
{
location="Move.php?nFolderID=" + ENetArch.ContactTypes.nFolderID + "&" +
"nPos=" + nPos + "&" + "dTarget=" + thsDate + "&";
}
else
{
location="List.php?nFolderID=" + ENetArch.ContactTypes.nFolderID + "&" +
"dTarget=" + thsDate + "&";
}
}
}
} |