| Related sites for http://www.wickett.net |
| Web_Host2 Offers website design and web hosting with statistics, PHP, Perl, daily backups and site search engine. | | R-Box2_-_plugin_version Play the REBOL maze game using the browser plugin. | | Moffat,_Alistair University of Melbourne. Interests include text, image, and index compression. | | Groupware_Software_Solutions_B_V_ Exchange attachment management, security auditing, reporting and spam filtering. | | Akmin_Technologies Offers content management software, including SiteGalore, OnlineSiteCreator, and Editlet. | | E-Call SMS service giving an address book, history logbook, group lists, ringtones and screen graphics. Free and Premium versions of the service exist. | | GExperts_For_Delphi_and_C++_Builder GExperts is an IDE add-in for Delphi that adds over fifteen different experts to Delphi. [Freeware] | | Motorola Manufactures mobile phones based on the UIQ platform including the A925 and A1000 models. Includes technical and feature information. | | Violet_UML_Editor_Plugin_for_Eclipse Cross-platform, easy-to-use UML editor integrated in the Eclipse development platform. [Open Source, GPL] | | Smart_Human_Logistics Consultancy and support services, and eHL .net application for time and attendance, and rostering. Module and service descriptions, white papers, company news, case studies, customer list, director bi | | RFC_0925 Multi-LAN Address Resolution. J. Postel. October 1984. | | Spyware_News A blog aimed at providing developments in the field of malicious software (specifically spyware) and assisting novice users with removal suggestions. | | Photoshop_Brushes_By_Sage 360 Photoshop brushes divided into 12 sets, containing 30 exclusive brushes which can easily be used to make attractive borders or frames and matching buttons or icons available on CD. Free brushes ar | | ISO__Vote_Closes_on_Draft_ISO/IEC_DIS_29500_Standard Official ISO press release outlining how the proposed standard did not achieve the required number of votes for approval. The comments submitted by members will will now be discussed at a ballot resol | | The_VSP Offers web design, hosting, and marketing services. | | Cooper_Design Offers site design and graphics. Located in Austin, Texas. | | Tracking_Tux__Research_Round-Up Where Linux is, and where it is going, in the enterprise sector. (December 4, 2002) | | Mosaic_Communications_Ltd Web design and Internet application development. Located in Bristol, United Kingdom. | | NewsBreak RSS News reader and weblog reader for Windows Mobile Pocket PC and Smartphone. With search and alert capability. | | Interactive_Intelligence,_Inc_ Developers of a proxy server. Site contains downloads, documentation and a forum. |
|
Wickett.NET Home Page
dmWorkPath = 'http://www.wickett.net/deluxe-menu/';
Home
WN Help Desk
WN Help Desk Web
WN MailKeeper
Music Ministry Manager
Registered Users
Contact Us
Search
var wi = "";
function edit(pageID){
guiEditWin = maxWindow("http://www.wickett.net/guiEdit.asp?Type=Page&PageID=" + pageID,"guiEdit",30)
guiEditWin.focus();
}
function editLayout(layoutID){
guiEditWin = maxWindow("http://www.wickett.net/userUtils/ManageLayouts.asp?Action=EditLayout&Layout=" + layoutID,"guiEdit",30);
guiEditWin.focus();
}
function viewStats(pageID){
statPage = centeredWindow("http://www.wickett.net/userUtils/Stats.asp?PageID=" + pageID,"viewStats",500,500);
statPage.focus();
}
function advancedEdit(pageID){
aEdit = maxWindow("http://www.wickett.net/Utilities.asp?Utility=AdvancedEdit&PageID=" + pageID,"AdvancedEdit",30);
aEdit.focus();
}
function editUserInfo(){
userWin = centeredWindow("http://www.wickett.net/userUtils/EditUserInfo.asp","EditUsers",500,600);
userWin.focus();
}
function SearchSite(){
srch = centeredWindow("http://www.wickett.net/Search.asp","SearchSite",380,150);
srch.focus();
}
function changePassword(){
changePWord = centeredWindow("http://www.wickett.net/userUtils/ChangePassword.asp","ChangePassword",400,220);
changePWord.focus();
}
function fileManagement(){
fileMan = maxWindow("http://www.wickett.net/userUtils/FileManagement.asp","fileManagement",100);
fileMan.focus();
}
function logoutUser(){
location = "http://www.wickett.net/Authenticate.asp?Action=LogoutUser";
}
function editMyInfo(){
editInfo = centeredWindow("http://www.wickett.net/userUtils/UpdateMyInfo.asp","updateInfo",500,450);
editInfo.focus();
}
function annEditor(){
aEditor = maxWindow("http://www.wickett.net/Utilities.asp?Utility=Announcements","annEdit",30);
aEditor.focus();
}
function requestNewPage(){
newPage = centeredWindow("http://www.wickett.net/Utilities.asp?Utility=NewPage","nPage",550,150);
newPage.focus();
}
function keywordEditor(){
kEditor = maxWindow("http://www.wickett.net/Utilities.asp?Utility=Keywords","keyEdit",50);
kEditor.focus();
}
function editorPage(pName){
editorP = maxWindow("http://www.wickett.net/" + pName,"editors",50);
editorP.focus();
}
function windowPosition(){
var x = 0;
var y = 0;
if(document.all){
x = window.screenLeft + 40;
y = window.screenTop + 40;
}else{
x = window.screenX + 40;
y = window.screenY + 150;
}
return [x,y];
}
function windowPositionAbs(){
var x = 0;
var y = 0;
if(document.all){
x = window.screenLeft;
y = window.screenTop;
}else{
x = window.screenX;
y = window.screenY;
}
return [x,y];
}
function windowSize(){
if(window.outerWidth){return [window.outerWidth, window.outerHeight];}
if(window.innerWidth){return [window.innerWidth, window.innerHeight];}
if(document.body.offsetWidth){return [document.body.offsetWidth, document.body.offsetHeight];}
if(document.body.clientWidth){return [document.body.clientWidth, document.body.clientHeight];}
if(document.getElementsByTagName){return [document.getElementsByTagName("body")[0].offsetWidth, document.getElementsByTagName("body")[0].offsetHeight];}
if(document.documentElement){return [document.documentElement.offsetWidth, document.documentElement.offsetHeight];}
}
function centeredWindow(url,name,w,h){
var pos = windowPositionAbs();
var siz = windowSize();
var l = pos[0];
var t = pos[1];
if(w < siz[0]){
l = l + ((siz[0] - w) / 2);
}
if(h < siz[1]){
t = t + ((siz[1] - h) / 2);
}
return window.open(url,name,"resizable=1,location=0,scrollbars=1,left=" + l + ",screenX=" + l + ",top=" + t + ",screenY=" + t + ",width=" + w + ",height=" + h);
}
function maxWindow(url,name,padding){
var pad = padding + 0;
var pos = windowPositionAbs();
var siz = windowSize();
var l = pos[0] + pad;
var t = pos[1] + pad;
var w = siz[0] - (pad * 2);
var h = siz[1] - (pad * 2);
if(w < 100){
w = 100;
l = pos[0] + ((siz[0] - w) / 2);
}
if(h < 100){
h = 100;
t = pos[1] + ((siz[1] - h) / 2);
}
return window.open(url,name,"resizable=1,location=0,scrollbars=1,left=" + l + ",screenX=" + l + ",top=" + t + ",screenY=" + t + ",width=" + w + ",height=" + h);
}
WN Help Desk
WN Help Desk is a shareware help desk
solution with a backend database of either Microsoft SQL or Microsoft Access.
WN Help Desk Standard uses only the Access backend database, while WN Help Desk
Enterprise can use either the Access backend or a Microsoft SQL backend. This
application provides a full-featured help desk for companies of any size.
Designed to be accessed by multiple help desk technicians at the same time, this
application has been developed over the course of seven years with the features that
current users have requested. If you have been unsatisfied with high-priced commercial
help desk software, this could be the solution for your company. Join the hundreds of
companies running WN Help Desk, a help desk solution for the rest of us.
WN Help Desk Web
WN Help Desk Web is a shareware
web-based help desk application that runs under Microsoft IIS 4.0 or higher. It can be used
either in conjunction with WN Help Desk, or as a standalone help desk solution.
WN Help Desk Web Standard uses only the Microsoft Access backend database, while
WN Help Desk Web Enterprise can use either the Access backend or a Microsoft SQL backend.
WN Help Desk Web allows your customers and technicians access to the help desk from a web
browser that supports JavaScript.
WN MailKeeper
WN MailKeeper will convert the information
in an Exchange Mailbox or a Personal Folders File (PST) to individual Outlook messages,
maintaining the folder format. The entire mail archive can then be written to a CD-ROM
and given to the user. Messages can be opened directly from the CD-ROM and will still
contain the original formatting and any attachments. Also, due to the way that Outlook
maintains the information within a message file the location can be searched to find
information that exists in the subject or body of the message.
Music Ministry Manager
Music Ministry Manager
is a complete web-based solution for managing all aspects of church worship. Schedule
events, select songs for an event, specify the key and order of the songs, print out
lead sheets in any key, import SongSelect files downloaded from CCLI, and much, much more.
Developers
Wickett.NET Developers - Curious about the
Wickett.NET developers? See this section for more information.
RSS Feed
document.cookie = 'styleSheet=Main.css';
document.cookie = 'appRoot=http://www.wickett.net/';
|
|