﻿var actName=''

function makereq(funcName,args)
{
    sendR(funcName+'$'+args,funcName);
    return false;
}
function recRes(args, context)
{
    onActionCompletion(args);
}

//this methos is called when user click on Punchout Button from Default.aspx page
function Defalut_btnPunchOut_Click()
{
  var user=document.getElementById("Login1_UserName");
  var pass=document.getElementById("Login1_PassWord");  
  ActiveTextService.btnpunchoutclick(pass.value,user.value,Defalut_btnPunchOut_ClickCB);
}

function Defalut_btnPunchOut_ClickCB(res)
{
  var result = res.split(","); 
  
  if(res == 'e0')
  {
    msgbox('Invalid Username or Password','vbOkOnly or vbWarning','Warning');
  }
  else if(res == 'p0')
  {
    msgbox('You are Already Punched Out','vbOkOnly or vbWarning','Unsuccessful');
  }
  else if (result.length > 0 && result[0] == 'false')  
  {
    msgbox('You did not punch out on '+ result[1] +'. This punch out time must be corrected before you can punch in for today. Clicking punch out from this screen will not work, you must contact an administrator to correct your punch out time for the previous date. The administrator can edit your punch out time from the "Add/Edit Punch Time" Page ','vbOkOnly or vbWarning','Warning');
  }
  else if (res != 'undefined' && res != '')
  {
       var argsarray = res.split(',');
       var user=document.getElementById("Login1_UserName");
       var pass=document.getElementById("Login1_PassWord");  
       ConfirmPunchOut(user.value,pass.value,argsarray[0],argsarray[1],argsarray[2]);
  }
  return false;  
}

function ConfirmPunchOut(strName,strPass,isOk,res,employeeid)
{
    if(isOk != null)
    {
        // Check Employee can fill time sheet or not.
        if(res == null)
        {		
            res = 'False';			
        }

        if(isOk == 'True')
        {
            if(res == 'True')
	            openTimeSheet(employeeid);
            else if(res == 'False')
                makereq("clientpunchout",strName + "," + strPass);
        }
        else
        {
            var ret = 0;
            ret = msgbox("Is this a break?", 'vbYesNo or vbQuestion', "Break or Punch Out");
            if(ret==vbNo)
            {
	            // Check for filed hours less than total punch time, if yes than Time sheet will show.
	            if(res == 'True')
		            openTimeSheet(employeeid);
	            else if(res == 'False')
	                makereq("clientpunchout",strName + "," + strPass);
            }
            else
            {
	            msgbox("Please remember that you must Punch back In after your break!","vbOkOnly or vbWarning","Warning");
	            makereq("clientpunchout",strName + "," + strPass);
            }
        }
    }
    else
        makereq("clientpunchout",strName + "," + strPass);
}

//this methos is called when user click on Punchin Button from Default.aspx page
function Default_btnPunchIn_Click(actionname)
{
    var user=document.getElementById("Login1_UserName");
    var pass=document.getElementById("Login1_PassWord");
       
    if((user.value != "") && (pass.value != ""))
    {
        actName = actionname;
        makereq(actionname,user.value + "," + pass.value)	
    }
    else
    {
        msgbox('Invalid Username or Password','vbOkOnly or vbWarning','Warning');
    }
    			
    return false;
}

function onActionCompletion(res)
{
    var result = res.split(","); 
    if (result.length > 0)
    {
        if (result[0] == 'true')
        {
            var dt = new Date(result[1]);
            if(actName == 'clientpunchin')
                msgbox("Successfully Punched In on " + dt.toLocaleDateString()+"-"+ dt.toLocaleTimeString()+" ","vbOkOnly or vbSuccessful","Successful");
            else
                msgbox("Time saved successfully.","vbOkOnly or vbSuccessful","Successful");             }        else if (result[0] == 'unable')        {             msgbox('You did not punch out on '+result[1]+'. This punch out time must be corrected before you can punch in for today. Clicking punch out from this screen will not work, you must contact an administrator to correct your punch out time for the previous date. The administrator can edit your punch out time from the "Add/Edit Punch Time" Page','vbOkOnly or vbWarning','Warning');        }        else if(result[0] == 'false')
        {
            if(actName == 'clientpunchin')
                msgbox("You are Already Punched In","vbOkOnly or vbUnSuccessful","Unsuccessful");
            else    
                msgbox("You are Already Punched Out!!","vbOkOnly or vbUnSuccessful","Unsuccessful");
        }
        else if(result[0] == 'invalid')
        {
            msgbox('Invalid Username or Password','vbOkOnly or vbWarning','Warning');
        }
        else if(result[0] == 'unauthorised')
        {
            msgbox('Your IP address has been restricted from Punching In/Out. Please see your administrator','vbOkOnly or vbWarning','Warning');
	    }        
    }
    actName = '';            
    return false;
}


function centerObjHelp(id) {
    var screenX, screenY;
    var obj = document.getElementById(id);
    var width = obj.offsetWidth;
    var height = obj.offsetHeight;
    if(navigator.appName == 'Microsoft Internet Explorer') {
        screenY = document.body.offsetHeight+270;
        screenX = screen.availWidth-20;
    } else {
        screenY = window.outerHeight;
        screenX = window.outerWidth;
    }
    screenX = (screenX/2)-(width/2);
    screenY = (screenY/2)-(height/2);
    screenY += document.body.scrollTop;
    obj.style.left = screenX+"px";
    obj.style.top = screenY+"px";
}
function openTimeSheet(employeeid)
{   
    showDialogCover();
    var bookedFrame = document.getElementById("frmBooked");
    bookedFrame.style.display = "block";
    bookedFrame.style.left = 35;
    var bookedFrame1 = document.getElementById("frmBooked1");
    bookedFrame1.src= "../main/UnAccountTimeSheet.aspx?empid="+ employeeid +"&nohead=true&barcodeURL=barcode/default.aspx&login=1";
    centerObj('frmBooked');
    bookedFrame.style.top= "0";
}

///Displays the semi-transparent dialog cover////
var coverShown = 0;
function showDialogCover() 
{
    coverShown += 1;
    hideAtWindow();
    showHideSelectBoxes(false,false);
    var dc = qd("dialogCover")
    dc.style.width = document.body.scrollWidth;
    dc.style.height = document.body.scrollHeight;
    dc.style.display = "inline";
}

function closeTimeSheet()
{
    var ret=msgbox("You must click on the 'Save' button next to the 'Don\'t Punch Out' button if you want to save the times you have added.  The 'Save' button only appears if hours unaccounted equals 0:00.","vbOK,vbCancel or vbWarning","Warning");
    if(ret == 2)
        return false;
    var bookedFrame = document.getElementById("frmBooked");
    bookedFrame.style.display = "none";
    var bookedFrame1 = document.getElementById("frmBooked1");
    hideDialogCover("dialogCover");
}
function SaveAndCloseTimeSheet()
{
    var bookedFrame = document.getElementById("frmBooked");
    bookedFrame.style.display = "none";
    var bookedFrame1 = document.getElementById("frmBooked1");
    hideDialogCover("dialogCover");
}

////Hides the dialog cover////
function hideDialogCover() {
    coverShown-=1;
    if(coverShown<1) {
        //The dialog cover has been called only once, or this is the original dialog being hidden.
        showHideSelectBoxes(true,false);			
        qd("dialogCover").style.display = "none";
    }
}

function UncheckRememberMe()
{
    if(!document.getElementById('Login1_RememberMe').checked)
	{
	    var cookie_date = new Date ( );  // current date &amp; time
	    cookie_date.setTime(cookie_date.getTime() - 1);				
	    document.cookie = "rememberLastLogin=; expires=" + cookie_date.toGMTString();
	}
}



function ShowIEdetectPopup(ieDetectPath)
{
    var BrowserDetect = {
	init: function () {
		this.browser = this.searchString(this.dataBrowser) || "An unknown browser";
		this.version = this.searchVersion(navigator.userAgent)
			|| this.searchVersion(navigator.appVersion)
			|| "an unknown version";
		this.OS = this.searchString(this.dataOS) || "an unknown OS";
	},
	searchString: function (data) {
		for (var i=0;i<data.length;i++)	{
			var dataString = data[i].string;
			var dataProp = data[i].prop;
			this.versionSearchString = data[i].versionSearch || data[i].identity;
			if (dataString) {
				if (dataString.indexOf(data[i].subString) != -1)
					return data[i].identity;
			}
			else if (dataProp)
				return data[i].identity;
		}
	},
	searchVersion: function (dataString) {
		var index = dataString.indexOf(this.versionSearchString);
		if (index == -1) return;
		return parseFloat(dataString.substring(index+this.versionSearchString.length+1));
	},
	dataBrowser: [
		{ 	string: navigator.userAgent,
			subString: "OmniWeb",
			versionSearch: "OmniWeb/",
			identity: "OmniWeb"
		},
		{
			string: navigator.vendor,
			subString: "Apple",
			identity: "Safari"
		},
		{
			prop: window.opera,
			identity: "Opera"
		},
		{
			string: navigator.vendor,
			subString: "iCab",
			identity: "iCab"
		},
		{
			string: navigator.vendor,
			subString: "KDE",
			identity: "Konqueror"
		},
		{
			string: navigator.userAgent,
			subString: "Firefox",
			identity: "Firefox"
		},
		{
			string: navigator.vendor,
			subString: "Camino",
			identity: "Camino"
		},
		{		// for newer Netscapes (6+)
			string: navigator.userAgent,
			subString: "Netscape",
			identity: "Netscape"
		},
		{
			string: navigator.userAgent,
			subString: "MSIE",
			identity: "Explorer",
			versionSearch: "MSIE"
		},
		{
			string: navigator.userAgent,
			subString: "Gecko",
			identity: "Mozilla",
			versionSearch: "rv"
		},
		{ 		// for older Netscapes (4-)
			string: navigator.userAgent,
			subString: "Mozilla",
			identity: "Netscape",
			versionSearch: "Mozilla"
		}
	],
	dataOS : [
		{
			string: navigator.platform,
			subString: "Win",
			identity: "Windows"
		},
		{
			string: navigator.platform,
			subString: "Mac",
			identity: "Mac"
		},
		{
			string: navigator.platform,
			subString: "Linux",
			identity: "Linux"
		}
	]

};
BrowserDetect.init();
if((BrowserDetect.version != "7") && (BrowserDetect.browser == "Explorer") )
{
    var clientFeatures = "center:yes;edge:raised;status:no;resizable:no;scroll:no;unadorned:yes;dialogWidth:310px;dialogHeight:160px;dialogTop:370;"
    showModalDialog(ieDetectPath,"",clientFeatures);	
}
}

function InstallGears()
{
    if (!window.google || !google.gears) {
        location.href = "http://gears.google.com/?action=install&icon_src=http://texas.cvltracker.com/cvlTrackerLogo-InBLue.jpg&name=cvlTracker Project Tracking&message=Install Google Gears to enhance performance of cvlTracker." + "&return="+location.href;
    }
    else
    {
        msgbox('Gears is already installed on your computer.','vbOkOnly or vbInformation','Information');
    }
}

var clientCode = clsAppConfig.ClientCode.substring(6,clsAppConfig.ClientCode.length)+'_';
var clientSubCode='';

if(clsAppConfig.ClientSubcode!='') 
   clientSubCode = clsAppConfig.ClientSubcode+'_';
   
var STORE_NAME =clientCode+clientSubCode+'GoogleGearData';
var localServer;
var store;
var clientCodePath = '../'+clsAppConfig.ClientCode+'/'+clsAppConfig.Idsite+'/';
        
var filesToCapture = [
'../ajaxControl/lpMap.js',
'../ajaxControl/lpInvoiceStructure.js',
'../ajaxControl/lpReviewControl.js',
'../ajaxControl/lpBillingControl.js',
'../ajaxControl/lpCommonFunctions.js',
'../ajaxControl/gtpScheduler.js',
'../ajaxControl/lpScheduleControl.js',
'../ajaxControl/lpStage.js',
'../ajaxControl/lpScheduleDateControl.js',
'../ajaxControl/lpTaskControl.js',
'../JavaScript/ACADViewer.js',                  
'../JavaScript/addAttachments.js',              
'../JavaScript/addEditPendingHours.js',         
'../JavaScript/addEditStatus.js',               
'../JavaScript/AttachFiles.js',                 
'../JavaScript/barcodeDefault.js',              
'../JavaScript/billingReport.js',               
'../JavaScript/budget.js',                      
'../JavaScript/chat.js',                        
'../JavaScript/ClientGrossInvoices.js',         
'../JavaScript/ControlPanel.js',                
'../JavaScript/CrewGnattChart.js',              
'../JavaScript/deletejobs.js',                  
'../JavaScript/employeeEfficiency.js',          
'../JavaScript/FilePicker.js',
'../JavaScript/grossReport.js',                 
'../JavaScript/HourstoApprovePanel.js',         
'../JavaScript/JobCycleMap.js',                 
'../JavaScript/jobScheduler.js',                
'../JavaScript/loginReport.js',                 
'../JavaScript/marketReport.js',                
'../JavaScript/MileageCalculator.js',           
'../JavaScript/multiTrip.js',                   
'../JavaScript/NonRelatedExpense.js',           
'../JavaScript/overdueInvoices.js',             
'../JavaScript/PaymentReport.js',
'../JavaScript/PersonalBillingReport.js',       
'../JavaScript/printInvoices.js',
'../JavaScript/printMultipleJobs.js',           
'../JavaScript/propGenStatusReport.js',         
'../JavaScript/proposalWorkSheet.js',           
'../JavaScript/quote.js',                       
'../JavaScript/Redesign.js',                    
'../JavaScript/rolodex.js',                     
'../JavaScript/searchPoints.js',                
'../JavaScript/setup.js',                       
'../JavaScript/shortcuts_v1.js',                
'../JavaScript/taskListEditor.js',              
'../JavaScript/TaskReport.js',                  
'../JavaScript/TransitReport.js',               
'../JavaScript/unbilledLabor.js',               
'../JavaScript/utilizeTimeLine.js',             
'../JavaScript/verbalRequest2.js',              
'../JavaScript/wz_dragdrop.js',
'../JavaScript/addEditJobs.js',
'../JavaScript/AddEditPoints.js',
'../JavaScript/addEditSurveyTypes.js',
'../JavaScript/autoSetup.js',
'../JavaScript/BarcodeDefaultPDA.js',
'../JavaScript/bookedProjects.js',
'../JavaScript/builderJobs.js',
'../JavaScript/chatContainer.js',
'../JavaScript/ClientSignUp.js',
'../JavaScript/CrewMembers.js',
'../JavaScript/draftingQueue.js',
'../JavaScript/efficiency.js',
'../JavaScript/gjv.js',
'../JavaScript/helperProject.js',
'../JavaScript/JobCalendar.js',
'../JavaScript/jobEfficiencyLargeProject.js',
'../JavaScript/lrg_components.js',
'../JavaScript/LargeProjectTree.js',
'../JavaScript/Largeprojectgrid.js',
'../JavaScript/ledger.js',
'../JavaScript/MasterJobSchedule.js',
'../JavaScript/MileageReport.js',
'../JavaScript/newNotes.js',
'../JavaScript/paid.js',
'../JavaScript/Payroll.js',
'../JavaScript/phoneMemo.js',
'../JavaScript/printLables.js',
'../JavaScript/projects.js',
'../JavaScript/proposalGenerator.js',
'../JavaScript/receivePayments.js',
'../JavaScript/ResourceReport.js',
'../JavaScript/searchJobs.js',
'../JavaScript/SendEmail.js',
'../JavaScript/shortcut.js',
'../JavaScript/TansactionReport.js',
'../JavaScript/taskListPanel.js',
'../JavaScript/taxReport.js',
'../JavaScript/unAccountTimeSheet.js',
'../JavaScript/UpdateFolderLocation.js',
'../JavaScript/verbalRequest.js',
'../JavaScript/viewPrintInvoices.js',
'../Scripts/scanUpdateTab.js',
'../Scripts/activeText.js',
'../Scripts/ddtabmenu.js',
'../Scripts/Header.js',
'../Scripts/QuickLogin.js',
'../Scripts/Seracheffects.js',
'../Scripts/Serachprototype.js',
'../Scripts/Serachwindow.js',
'../Scripts/ContextMenu.js',
'../Scripts/XMLHttpSyncExecutor.js',
'../Scripts/Common.js',
'../Scripts/Help.js',
'../Scripts/JSFX_ImageZoom.js',
'../swiftSearch.htm',
'../Scripts/gears_init.js',
'../App_Themes/Gray/style-cvl.css',
'../main/proposalGenerator.css',
'../main/AddEditJobs.css',
'../CSS/Menu.css',
'../CSS/DataList.css',
'../main/ControlPanel.css',
'../webService/CommonService.asmx/js',
'../webService/ActiveTextService.asmx/js',
'../App_Themes/Gray/Images/menu/smenu-leftbg2.gif',
'../App_Themes/Gray/Images/login-h-bg.gif',
'../App_Themes/Gray/Images/menu/smenu-rightbg2.gif',
'../App_Themes/Gray/Images/bullet1.gif',
'../App_Themes/Gray/Images/logo-cvl.jpg',
'../App_Themes/Gray/Images/b-header-bg.gif',
'../App_Themes/Gray/Images/menu/smenu-topbg.gif',
'../App_Themes/Gray/Images/menu/smenu-spacer.gif',
'../App_Themes/Gray/Images/menu/smenu-lefttop.gif',
'../App_Themes/Gray/Images/menu/smenu-leftbg.gif',
'../App_Themes/Gray/Images/menu/smenu-righttop.gif',
'../App_Themes/Gray/Images/menu/smenu-rightbg.gif',
'../App_Themes/Gray/Images/menu/smenu-botright.gif',
'../App_Themes/Gray/Images/menu/smenu-botleft.gif',
'../App_Themes/Gray/Images/menu/smenu-botbg.gif',
'../App_Themes/Gray/Images/form_buttons.gif',
'../App_Themes/Gray/Images/ControlPanel/projects.png',
'../App_Themes/Gray/Images/ControlPanel/ProposalsNotApproved.png',
'../App_Themes/Gray/Images/ControlPanel/builderJobs.png',
'../App_Themes/Gray/Images/ControlPanel/ScheduledJobs.png',
'../App_Themes/Gray/Images/ControlPanel/MultiTrip.png',
'../App_Themes/Gray/Images/ControlPanel/verbalRequest.png',
'../App_Themes/Gray/Images/ControlPanel/taskListPanel.png',
'../App_Themes/Gray/Images/ControlPanel/overDueJobs.png',
'../App_Themes/Gray/Images/ControlPanel/newNotes.png',
'../App_Themes/Gray/Images/ControlPanel/projectManagers.png',
'../App_Themes/Gray/Images/ControlPanel/Calendar.png',
'../App_Themes/Gray/Images/ControlPanel/Chat.png',
'../App_Themes/Gray/Images/ControlPanel/overdueInvoices.png',
'../App_Themes/Gray/Images/ControlPanel/HourstoApprovePanel.png',
'../App_Themes/Gray/Images/ControlPanel/PaycvlSoftInvoice.png',
'../App_Themes/Gray/Images/ControlPanel/cvlSoftSupportCenter.png',
'../App_Themes/Gray/Images/ControlPanel/cvlSoftHelpVideos.png',
'../App_Themes/Gray/Images/ControlPanel/verbalRequest.png',
'../App_Themes/Gray/Images/ControlPanel/HelpInactive.gif',
'../App_Themes/Gray/Images/ControlPanel/RefreshInactive.gif',
'../App_Themes/Gray/Images/ControlPanel/controlPanel.gif',
'../App_Themes/Gray/Images/ControlPanel/ChartInactive.gif',
'../App_Themes/Gray/Images/ControlPanel/BackInactive.gif',
'../App_Themes/Gray/Images/menu/smenu-botright.gif',
'../App_Themes/Gray/Images/topbg.gif',
'../App_Themes/Gray/Images/headerroundleft.gif',
'../App_Themes/Gray/Images/btn-quickmenu.gif',
'../App_Themes/Gray/Images/btn-pers-pages.gif',
'../App_Themes/Gray/Images/btn-control-pnl.gif',
'../App_Themes/Gray/Images/topHeadertableft.gif',
'../App_Themes/Gray/Images/topHeadertabright.gif',
'../App_Themes/Gray/Images/logo-cvl.jpg',
'../App_Themes/Gray/Images/menu/m-bg3.gif',
'../App_Themes/Gray/Images/menu/glowtab-left.gif',
'../App_Themes/Gray/Images/menu/glowtab.gif',
'../App_Themes/Gray/Images/topHeadertabbg.gif',
'../App_Themes/Gray/Images/headerroundright.gif',
'../App_Themes/Gray/Images/search_22x22.png',
'../App_Themes/Gray/Images/glowtab-left.gif',
'../App_Themes/Gray/Images/glowtab.gif',
'../App_Themes/Gray/Images/bullet1.gif',
'../Images/icons/24x24/menu/SmallProjectSetup.gif',
'../Images/icons/24x24/menu/LargeProjectSetup.gif',
'../Images/icons/24x24/menu/legacy.gif',
'../Images/icons/24x24/menu/VerbalRequest.gif',
'../Images/icons/24x24/menu/ScanUpdateProject.gif',
'../Images/icons/24x24/menu/ProjectFolderLocation.gif',
'../Images/icons/24x24/menu/tasklist.gif',
'../Images/icons/24x24/menu/Task.png',
'../Images/icons/24x24/menu/editInvoiceJob.png',
'../Images/icons/24x24/menu/employeesWizard.gif',
'../Images/icons/24x24/menu/Employees.gif',
'../Images/icons/24x24/menu/EmployeePayRate.gif',
'../Images/icons/24x24/menu/client.gif',
'../Images/icons/24x24/menu/subcontractor.gif',
'../Images/icons/24x24/menu/rolodex.gif',
'../Images/icons/24x24/menu/AuthoriseClients.gif',
'../Images/icons/24x24/menu/FinanceCharge.gif',
'../Images/icons/24x24/menu/PersonalCalendar.gif',
'../Images/icons/24x24/menu/JobCalendar.gif',
'../Images/icons/24x24/menu/CrewCalendar.gif',
'../Images/icons/24x24/menu/car.gif',
'../Images/icons/24x24/menu/Notes.gif',
'../Images/icons/24x24/menu/phone.gif',
'../Images/icons/24x24/menu/PunchTime1.gif',
'../Images/icons/24x24/menu/AddPunchTime.gif',
'../Images/icons/24x24/menu/punchhours.gif',
'../Images/icons/24x24/menu/timesheet.gif',
'../Images/icons/24x24/menu/timeCard.gif',
'../Images/icons/24x24/menu/NonProjectTime.gif',
'../Images/icons/24x24/menu/Transcripts Flat.png',
'../Images/icons/24x24/menu/expense.png',
'../Images/icons/24x24/menu/printInvoices.gif',
'../Images/icons/24x24/menu/receivePayments.gif',
'../Images/icons/24x24/menu/paymentreport.gif',
'../Images/icons/24x24/menu/overdueInvoices.gif',
'../Images/icons/24x24/menu/unpaidInvoice.gif',
'../Images/icons/24x24/menu/paidInvoice.gif',
'../Images/icons/24x24/menu/ExpenseInvoice.gif',
'../Images/icons/24x24/menu/unbilledLabor.gif',
'../Images/icons/24x24/menu/TransationReport.png',
'../Images/icons/24x24/menu/SearchJobs.gif',
'../Images/icons/24x24/menu/setup.gif',
'../Images/icons/24x24/menu/sendEmail.gif',
'../Images/icons/24x24/menu/lockdesktop.gif',
'../Images/icons/24x24/menu/printLabels.gif',
'../Images/icons/24x24/menu/printAddress.gif',
'../Images/icons/24x24/menu/printGeneral.gif',
'../Images/icons/24x24/menu/MileageCalculator.gif',
'../Images/icons/24x24/menu/attachw.gif',
'../Images/icons/24x24/menu/deletejob.gif',
'../Images/icons/24x24/menu/deleteInvoices.gif',
'../Images/icons/24x24/menu/gjv.gif',
'../Images/icons/24x24/menu/mapPoint.gif',
'../Images/icons/24x24/menu/SearchPoints.gif',
'../Images/icons/24x24/menu/HelperProject.gif',
'../Images/icons/24x24/menu/Transcripts%20Flat.png',
'../Images/icons/24x24/menu/DraftingCalendar.gif',
'../Images/icons/32x32/SmallProjectSetup.gif',
'../Images/icons/32x32/LargeProjectSetup.gif',
'../Images/icons/32x32/legacy.gif',
'../Images/icons/32x32/VerbalRequest.gif',
'../Images/icons/32x32/ScanUpdateProject.gif',
'../Images/icons/32x32/ProjectFolderLocation.gif',
'../Images/icons/32x32/tasklist.gif',
'../Images/icons/32x32/Task.png',
'../Images/icons/32x32/editInvoiceJob.png',
'../Images/icons/32x32/employeesWizard.gif',
'../Images/icons/32x32/Employees.gif',
'../Images/icons/32x32/EmployeePayRate.gif',
'../Images/icons/32x32/client.gif',
'../Images/icons/32x32/subcontractor.gif',
'../Images/icons/32x32/rolodex.gif',
'../Images/icons/32x32/AuthoriseClients.gif',
'../Images/icons/32x32/FinanceCharge.gif',
'../Images/icons/32x32/PersonalCalendar.gif',
'../Images/icons/32x32/JobCalendar.gif',
'../Images/icons/32x32/CrewCalendar.gif',
'../Images/icons/32x32/car.gif',
'../Images/icons/32x32/Notes.gif',
'../Images/icons/32x32/phone.gif',
'../Images/icons/32x32/PunchTime1.gif',
'../Images/icons/32x32/AddPunchTime.gif',
'../Images/icons/32x32/punchhours.gif',
'../Images/icons/32x32/timesheet.gif',
'../Images/icons/32x32/timeCard.gif',
'../Images/icons/32x32/NonProjectTime.gif',
'../Images/icons/32x32/Transcripts Flat.png',
'../Images/icons/32x32/expense.png',
'../Images/icons/32x32/printInvoices.gif',
'../Images/icons/32x32/receivePayments.gif',
'../Images/icons/32x32/paymentreport.gif',
'../Images/icons/32x32/overdueInvoices.gif',
'../Images/icons/32x32/unpaidInvoice.gif',
'../Images/icons/32x32/paidInvoice.gif',
'../Images/icons/32x32/ExpenseInvoice.gif',
'../Images/icons/32x32/unbilledLabor.gif',
'../Images/icons/32x32/TransationReport.png',
'../Images/icons/32x32/SearchJobs.gif',
'../Images/icons/32x32/setup.gif',
'../Images/icons/32x32/sendEmail.gif',
'../Images/icons/32x32/lockdesktop.gif',
'../Images/icons/32x32/printLabels.gif',
'../Images/icons/32x32/printAddress.gif',
'../Images/icons/32x32/printGeneral.gif',
'../Images/icons/32x32/MileageCalculator.gif',
'../Images/icons/32x32/attachw.gif',
'../Images/icons/32x32/deletejob.gif',
'../Images/icons/32x32/deleteInvoices.gif',
'../Images/icons/32x32/gjv.gif',
'../Images/icons/32x32/mapPoint.gif',
'../Images/icons/32x32/SearchPoints.gif',
'../Images/icons/32x32/HelperProject.gif',
'../Images/icons/32x32/Transcripts%20Flat.png',
'../Images/icons/32x32/DraftingCalendar.gif',
'../Images/icons/48x48/SmallProjectSetup.gif',
'../Images/icons/48x48/LargeProjectSetup.gif',
'../Images/icons/48x48/legacy.gif',
'../Images/icons/48x48/VerbalRequest.gif',
'../Images/icons/48x48/ScanUpdateProject.gif',
'../Images/icons/48x48/ProjectFolderLocation.gif',
'../Images/icons/48x48/tasklist.gif',
'../Images/icons/48x48/Task.png',
'../Images/icons/48x48/editInvoiceJob.png',
'../Images/icons/48x48/employeesWizard.gif',
'../Images/icons/48x48/Employees.gif',
'../Images/icons/48x48/EmployeePayRate.gif',
'../Images/icons/48x48/client.gif',
'../Images/icons/48x48/subcontractor.gif',
'../Images/icons/48x48/rolodex.gif',
'../Images/icons/48x48/AuthoriseClients.gif',
'../Images/icons/48x48/FinanceCharge.gif',
'../Images/icons/48x48/PersonalCalendar.gif',
'../Images/icons/48x48/JobCalendar.gif',
'../Images/icons/48x48/CrewCalendar.gif',
'../Images/icons/48x48/car.gif',
'../Images/icons/48x48/Notes.gif',
'../Images/icons/48x48/phone.gif',
'../Images/icons/48x48/PunchTime1.gif',
'../Images/icons/48x48/AddPunchTime.gif',
'../Images/icons/48x48/punchhours.gif',
'../Images/icons/48x48/timesheet.gif',
'../Images/icons/48x48/timeCard.gif',
'../Images/icons/48x48/NonProjectTime.gif',
'../Images/icons/48x48/Transcripts Flat.png',
'../Images/icons/48x48/expense.png',
'../Images/icons/48x48/printInvoices.gif',
'../Images/icons/48x48/receivePayments.gif',
'../Images/icons/48x48/paymentreport.gif',
'../Images/icons/48x48/overdueInvoices.gif',
'../Images/icons/48x48/unpaidInvoice.gif',
'../Images/icons/48x48/paidInvoice.gif',
'../Images/icons/48x48/ExpenseInvoice.gif',
'../Images/icons/48x48/unbilledLabor.gif',
'../Images/icons/48x48/TransationReport.png',
'../Images/icons/48x48/SearchJobs.gif',
'../Images/icons/48x48/setup.gif',
'../Images/icons/48x48/sendEmail.gif',
'../Images/icons/48x48/lockdesktop.gif',
'../Images/icons/48x48/printLabels.gif',
'../Images/icons/48x48/printAddress.gif',
'../Images/icons/48x48/printGeneral.gif',
'../Images/icons/48x48/MileageCalculator.gif',
'../Images/icons/48x48/attachw.gif',
'../Images/icons/48x48/deletejob.gif',
'../Images/icons/48x48/deleteInvoices.gif',
'../Images/icons/48x48/gjv.gif',
'../Images/icons/48x48/mapPoint.gif',
'../Images/icons/48x48/SearchPoints.gif',
'../Images/icons/48x48/HelperProject.gif',
'../Images/icons/48x48/Transcripts%20Flat.png',
'../Images/icons/48x48/DraftingCalendar.gif',
'../Images/icons/16x16/mapPoint.gif',
'../Images/icons/16x16/AddPunchTime.gif',
'../Images/icons/16x16/printAddress.gif',
'../Images/icons/16x16/attachw.gif',
'../Images/icons/16x16/printLabels.gif',
'../Images/icons/16x16/JobCalendar.gif',
'../Images/icons/16x16/CrewCalendar.gif',
'../Images/icons/16x16/car.gif',
'../Images/icons/16x16/AuthoriseClients.gif',
'../Images/icons/16x16/deleteInvoices.gif',
'../Images/icons/16x16/deletejob.gif',
'../Images/icons/16x16/editInvoiceJob.png',
'../Images/icons/16x16/sendEmail.gif',
'../Images/icons/16x16/expense.png',
'../Images/icons/16x16/FinanceCharge.gif',
'../Images/icons/16x16/printGeneral.gif',
'../Images/icons/16x16/printInvoices.gif',
'../Images/icons/16x16/gjv.gif',
'../Images/icons/16x16/lockdesktop.gif',
'../Images/icons/16x16/legacy.gif',
'../Images/icons/16x16/LargeProjectSetup.gif',
'../Images/icons/16x16/paidInvoice.gif',
'../Images/icons/16x16/NonProjectTime.gif',
'../Images/icons/16x16/Notes.gif',
'../Images/icons/16x16/phone.gif',
'../Images/icons/16x16/ProjectFolderLocation.gif',
'../Images/icons/16x16/receivePayments.gif',
'../Images/icons/16x16/rolodex.gif',
'../Images/icons/16x16/SearchJobs.gif',
'../Images/icons/16x16/employeesWizard.gif',
'../Images/icons/16x16/punchhours.gif',
'../Images/icons/16x16/SmallProjectSetup.gif',
'../Images/icons/16x16/EmployeePayRate.gif',
'../Images/icons/16x16/paymentreport.gif',
'../Images/icons/16x16/SearchPoints.gif',
'../Images/icons/16x16/MileageCalculator.gif',
'../Images/icons/16x16/PunchTime1.gif',
'../Images/icons/16x16/setup.gif',
'../Images/icons/16x16/PersonalCalendar.gif',
'../Images/icons/16x16/VerbalRequest.gif',
'../Images/icons/16x16/overdueInvoices.gif',
'../Images/icons/16x16/tasklist.gif',
'../Images/icons/16x16/Task.png',
'../Images/icons/16x16/Transcripts%20Flat.png',
'../Images/icons/16x16/timeCard.gif',
'../Images/icons/16x16/timesheet.gif',
'../Images/icons/16x16/TransationReport.png',
'../Images/icons/16x16/unbilledLabor.gif',
'../Images/icons/16x16/ExpenseInvoice.gif',
'../Images/icons/16x16/unpaidInvoice.gif',
'../Images/icons/16x16/ScanUpdateProject.gif',
'../Images/icons/16x16/Employees.gif',
'../Images/icons/attachw.gif',
'../Images/icons/Calendar1.jpg',
'../Images/icons/car.gif',
'../Images/icons/controlPanel.gif',
'../Images/icons/CrewMembers.gif',
'../Images/icons/delete.gif',
'../Images/icons/edit_profile.gif',
'../Images/icons/EmployeeOverTimePayRate.gif',
'../Images/icons/Employees.gif',
'../Images/icons/ExpenseInvoice.gif',
'../Images/icons/GeneratePayroll.gif',
'../Images/icons/hoursperjob.gif',
'../Images/icons/JobCycleMap.gif',
'../Images/icons/LargeProjectSetup.gif',
'../Images/icons/legacy.gif',
'../Images/icons/mapPoint.gif',
'../Images/icons/MileageCalculator.gif',
'../Images/icons/NonRealtedInvoice.gif',
'../Images/icons/PaidInvoice.gif',
'../Images/icons/PersonalCalendar.gif',
'../Images/icons/preview.gif',
'../Images/icons/printGeneral.gif',
'../Images/icons/printLabels.gif',
'../Images/icons/punchhours.gif',
'../Images/icons/receivePayments.gif',
'../Images/icons/rolodex.gif',
'../Images/icons/search.gif',
'../Images/icons/SearchPoints.gif',
'../Images/icons/setup.gif',
'../Images/icons/tasklist.gif',
'../Images/icons/timeCard1.gif',
'../Images/icons/UnpaidInvoice.gif',
'../Images/icons/updn.gif',
'../Images/icons/ViewStatements.gif',
'../Images/icons/addEditBill.gif',
'../Images/icons/AddPunchTime.gif',
'../Images/icons/Calendar.gif',
'../Images/icons/Calendar2.jpg',
'../Images/icons/close.gif',
'../Images/icons/CrewCalendar.gif',             	
'../Images/icons/customize.gif',                	
'../Images/icons/Detail.gif',                   	
'../Images/icons/effReport.gif',                	
'../Images/icons/EmployeePayRate.gif',          	
'../Images/icons/employeesWizard.gif',          	
'../Images/icons/gjv.gif',                      	
'../Images/icons/JobCalendar.gif',              	
'../Images/icons/keys.gif',                     	
'../Images/icons/ledger.gif',                   	
'../Images/icons/logout.gif',                   	
'../Images/icons/Menu.gif',                     	
'../Images/icons/minus.gif',                    	
'../Images/icons/Notes.gif',
'../Images/icons/payroll.gif',
'../Images/icons/phone.gif',
'../Images/icons/plus.gif',
'../Images/icons/printAddress.gif',
'../Images/icons/printInvoices.gif',	
'../Images/icons/ProjectFolderLocation.gif',
'../Images/icons/PunchTime1.gif',
'../Images/icons/refresh.gif',
'../Images/icons/ScanUpdateProject.gif',
'../Images/icons/SearchJobs.gif',
'../Images/icons/sendEmail.gif',
'../Images/icons/SmallProjectSetup.gif',
'../Images/icons/timesheet.gif',
'../Images/icons/updn-cancel.gif',
'../Images/icons/VerbalRequest.gif',
'../Images/menu/smenu-spacer.gif',
'../Images/menu/popup-menu.gif',
'../Images/00.gif',
'../Images/01.gif',
'../Images/02.gif',
'../Images/03.gif',
'../Images/04.gif',
'../Images/05.gif',
'../Images/10.gif',
'../Images/11.gif',
'../Images/12.gif',
'../Images/13.gif',
'../Images/14.gif',
'../Images/15.gif',
'../Images/20.gif',
'../Images/21.gif',
'../Images/22.gif',
'../Images/23.gif',
'../Images/24.gif',
'../Images/25.gif',
'../Images/30.gif',
'../Images/31.gif',
'../Images/32.gif',
'../Images/33.gif',
'../Images/34.gif',
'../Images/35.gif',
'../Images/40.gif',
'../Images/41.gif',
'../Images/42.gif',
'../Images/43.gif',
'../Images/44.gif',
'../Images/45.gif',
'../Images/actual.jpg',
'../Images/arrow-bot.gif',             
'../Images/atBot.png',                 
'../Images/att_moveOff.gif',           
'../Images/at_Top.png',
'../Images/add.gif',        
'../Images/arrow-left.gif', 
'../Images/atMid.png',      
'../Images/att_pdf.gif',    
'../Images/AddPunchTime.gif',
'../Images/arrow-right.gif', 
'../Images/atTop.png',       
'../Images/att_pdfOff.gif',  
'../Images/AddTimeCard.gif',
'../Images/arrow-top.gif',
'../Images/att_move.gif',
'../Images/att_search.gif',
'../Images/b-header1-bg.gif',                 
'../Images/b-header2-bg.gif',                 
'../Images/bl.gif',                           
'../Images/BlackWhite.gif',                   
'../Images/blue-lightbg1.gif',
'../Images/bluebg1.gif',                
'../Images/Bottom.gif',
'../Images/btn-Collapse.gif',
'../Images/btn-login.gif',                 
'../Images/btnCrewAbsent-checked-down.gif',   
'../Images/btnCrewAbsent-down.gif',           
'../Images/btnNext.gif',                      
'../Images/btnPrint.gif',                     
'../Images/btnPrintDir.gif',                  
'../Images/btnResetJobScheduler.gif',         
'../Images/builderAdd.gif',         
'../Images/b-header11-bg.gif',
'../Images/BGColor.gif',
'../Images/blackBG.gif',
'../Images/blue-lightbg.gif',
'../Images/bluebg.gif',
'../Images/collapse.gif',
'../Images/bm.gif',
'../Images/br.gif',
'../Images/btn-login-PDA.gif',
'../Images/btnCloseRed.gif',
'../Images/btnCrewAbsent-checked.gif',
'../Images/btnCrewAbsent.gif',
'../Images/btnPrev.gif',
'../Images/btnPrintDir-down.gif',
'../Images/btnResetJobScheduler-down.gif',
'../Images/btnSave-down.gif',
'../Images/collapse1.gif',
'../Images/Delete.gif',
'../Images/DeleteOff.gif',
'../Images/dimension.gif',
'../Images/dirArrow0.gif',
'../Images/dirArrow1.gif',
'../Images/dirArrowH.gif',
'../Images/directions.png',
'../Images/DownloadFile.gif',
'../Images/DownloadFolder.gif',
'../Images/Edit.gif',
'../Images/Email.gif',
'../Images/Email_attach.gif',
'../Images/Email_attachOff.gif',
'../Images/employeeEfficiencyChart.jpg',
'../Images/EventMinus.gif',
'../Images/EventPlus.gif',
'../Images/expand.gif',
'../Images/expand.jpg',
'../Images/expand1.gif',
'../Images/expandEmp_XPblue.gif',
'../Images/expand_XPblue.gif',
'../Images/false.gif',
'../Images/FemaleEdit.gif',
'../Images/Find.gif',
'../Images/FindTimeCard.gif',
'../Images/followUp-1.gif',
'../Images/followUp0.gif',
'../Images/Gantt3.gif',
'../Images/Gantt4.gif',
'../Images/Gantt5.gif',
'../Images/Gantt6.gif',
'../Images/GJVAllJobs.png',
'../Images/GJVDeclined.png',
'../Images/GJVDrafting.png',
'../Images/GJVFinishedField.png',
'../Images/GJVInField.png',
'../Images/GJVInResearch.png',
'../Images/GJVReceived.png',
'../Images/GJVReview.png',
'../Images/GjvvrJob.gif',
'../Images/GjvvrJob.png',
'../Images/hashbackJOB.jpg',
'../Images/hashbackPH.jpg',
'../Images/hashbackPJ.jpg',
'../Images/HeaderLogo.gif',
'../Images/headerroundleft.gif',
'../Images/headerroundright.gif',
'../Images/HelpFile.png',
'../Images/home.gif',
'../Images/ic-gjv-all.gif',
'../Images/ic-gjv-drafting.gif',
'../Images/ic-gjv-field.gif',
'../Images/ic-gjv-finish-f.gif',
'../Images/ic-gjv-prop-dec.gif',
'../Images/ic-gjv-received.gif',
'../Images/ic-gjv-reserch.gif',
'../Images/ic-gjv-review.gif',
'../Images/ic-gjv-vrjob.gif',
'../Images/icon-addcomp.gif',
'../Images/icon-editcomp.gif',
'../Images/icon.information.gif',
'../Images/inTrouble-1.gif',
'../Images/inTrouble0.gif',
'../Images/InvalidFile.gif',
'../Images/Jobhashback.gif',
'../Images/jobhashClose.gif',
'../Images/jobSchCrewBot.gif',
'../Images/jobSchCrewTop.gif',
'../Images/jottAddLink.gif',
'../Images/LatLon.png',
'../Images/latlonnotfound.gif',
'../Images/Layers.gif',
'../Images/Layers.jpg',
'../Images/left_arrow.gif',
'../Images/Loading.gif',
'../Images/LoginStartJotting.png',
'../Images/MacRefresh.gif',
'../Images/mail_0.gif',
'../Images/Maximize.gif',
'../Images/min-xp.gif',
'../Images/Minimize.gif',
'../Images/minus.gif',
'../Images/ml.gif',
'../Images/mr.gif',
'../Images/NA.gif',
'../Images/NavigationDown.gif',
'../Images/NavigationUp.gif',
'../Images/NewFolder.gif',
'../Images/NewFolderOff.gif',
'../Images/NoPreview.jpg',
'../Images/normalcolor.gif',
'../Images/Ok_attach.gif',
'../Images/open.jpg',
'../Images/original.gif',
'../Images/overBudget-1.gif',
'../Images/overBudget0.gif',
'../Images/overdue-1.gif',
'../Images/overdue0.gif',
'../Images/paid.gif',
'../Images/Paste.gif',
'../Images/PasteOff.gif',
'../Images/personalCalSet.gif',
'../Images/phaseType.jpg',
'../Images/phaseType.png',
'../Images/plus-xp.gif',
'../Images/plus.gif',
'../Images/pngfix.png',
'../Images/Point_Office.png',
'../Images/print.gif',
'../Images/Print1.gif',
'../Images/printdirection.jpg',
'../Images/Printinvoice_go.gif',
'../Images/Printinvoice_one.gif',
'../Images/Printinvoice_three.gif',
'../Images/Printinvoice_two.gif',
'../Images/punchinout.gif',
'../Images/rainDay.gif',
'../Images/reassign.gif',
'../Images/Refresh.gif',
'../Images/Rename.gif',
'../Images/Rename_attach.gif',
'../Images/ReoccurringEvents.gif',
'../Images/resourceset.gif',
'../Images/ReverseCheck.gif',
'../Images/revertRainDay.gif',
'../Images/right_arrow2.gif',
'../Images/Rol_123-end.gif',
'../Images/Root.gif',
'../Images/rotate.gif',
'../Images/rotate.jpg',
'../Images/rtab_done_text-novideo.gif',
'../Images/rtab_done_text.gif',
'../Images/rtab_done_video.gif',
'../Images/rtab_text.gif',
'../Images/rtab_text_video.gif',
'../Images/rtab_video_text.gif',
'../Images/rtab_video_video-notext.gif',
'../Images/rtab_video_video.gif',
'../Images/save.gif',
'../Images/saveTimeCard.gif',
'../Images/save_all.gif',
'../Images/Save_attach.gif',
'../Images/scale.jpg',
'../Images/schedAddOr.gif',
'../Images/schedAddThen.gif',
'../Images/Search.gif',
'../Images/Search.jpg',
'../Images/Search_Punchtime.gif',
'../Images/select.gif',
'../Images/setup-mark-comp.gif',
'../Images/ShareToClient.gif',
'../Images/ShareToClientOff.gif',
'../Images/ShiftSearch.gif',
'../Images/ShiftSearchNew.gif',
'../Images/showtext.gif',
'../Images/smallOk.gif',
'../Images/spacer.gif',
'../Images/spellcheck.gif',
'../Images/SplitterDown.gif',
'../Images/SplitterLeft.gif',
'../Images/SplitterRight.gif',
'../Images/SplitterUp.gif',
'../Images/ssClose.gif',
'../Images/ssHelp.gif',
'../Images/ssHelp_bot.png',
'../Images/ssHelp_mid.png',
'../Images/ssHelp_top.png',
'../Images/ssSearch.gif',
'../Images/ssTerms.png',
'../Images/subTaskType.jpg',
'../Images/subtaskType.png',
'../Images/collapseEmp_XPblue.gif',
'../Images/SymbolError.gif',
'../Images/tab-creat-Clients.gif',
'../Images/tabClients.gif',
'../Images/tabEmployees.gif',
'../Images/tabMiddle-c.gif',
'../Images/tabMiddle-e.gif',
'../Images/tab_done_text-novideo.gif',
'../Images/tab_done_text.gif',
'../Images/tab_done_video.gif',
'../Images/tab_text.gif',
'../Images/tab_text_video.gif',
'../Images/tab_video_text.gif',
'../Images/tab_video_video-notext.gif',
'../Images/tab_video_video.gif',
'../Images/taskType.jpg',
'../Images/taskType.png',
'../Images/task_description.gif',
'../Images/task_subtask.gif',
'../Images/ThumbNail.gif',
'../Images/timecardCollapse.png',
'../Images/timecardExpand.png',
'../Images/tl.gif',
'../Images/tm.gif',
'../Images/Top.gif',
'../Images/topheader-cvl.jpg',
'../Images/tr.gif',
'../Images/transparentGray.gif',
'../Images/transparentpixel.gif',
'../Images/Trip10CP.gif',
'../Images/Trip10NS.gif',
'../Images/Trip10ST.gif',
'../Images/Trip1CP.gif',
'../Images/Trip1NS.gif',
'../Images/Trip1ST.gif',
'../Images/Trip2CP.gif',
'../Images/Trip2NS.gif',
'../Images/Trip2ST.gif',
'../Images/Trip3CP.gif',
'../Images/Trip3NS.gif',
'../Images/Trip3ST.gif',
'../Images/Trip4CP.gif',
'../Images/Trip4NS.gif',
'../Images/Trip4ST.gif',
'../Images/Trip5CP.gif',
'../Images/Trip5NS.gif',
'../Images/Trip5ST.gif',
'../Images/Trip6CP.gif',
'../Images/Trip6NS.gif',
'../Images/Trip6ST.gif',
'../Images/Trip7CP.gif',
'../Images/Trip7NS.gif',
'../Images/Trip7ST.gif',
'../Images/Trip8CP.gif',
'../Images/Trip8NS.gif',
'../Images/Trip8ST.gif',
'../Images/Trip9CP.gif',
'../Images/Trip9NS.gif',
'../Images/Trip9ST.gif',
'../Images/true.gif',
'../Images/undo.gif',
'../Images/UnShareToClient.gif',
'../Images/UnShareToClientOff.gif',
'../Images/Up.gif',
'../Images/updn-cancel.gif',
'../Images/Upload.gif',
'../Images/UploadOff.gif',
'../Images/UserTechSupport.gif',
'../Images/UserTechSupportHelp.gif',
'../Images/vbWarning.gif',
'../Images/ViewProjectHours.gif',
'../Images/wait.gif',
'../Images/warning.gif',
'../Images/webdesk.gif',
'../Images/whiteBG.gif',
'../Images/windowx.gif',
'../Images/Working.gif',
'../Images/X-Rotate.gif',
'../Images/Y-Rotate.gif',
'../Images/yahooflag.png',
'../Images/Z-Rotate.gif',
'../Images/zoomIn.jpg',
'../Images/zoomInIcon.gif',
'../Images/zoomOut.jpg',
'../Images/zoomOutIcon.gif',
'/NetSpell/spell.js',
'/aspnet_client/cvlTracker/jsMsgbox/js_msgbox.html',
'/aspnet_client/cvlTracker/jsMsgbox/msgbox.js',
'/aspnet_client/cvlTracker/jsMsgbox/round-button.css',
'/aspnet_client/PetersDatePackage/2_0_4/PDP_Globals.js',
'/aspnet_client/PetersDatePackage/2_0_4/DateTextBox.js',
'/aspnet_client/PetersDatePackage/2_0_4/CS_Menu.js',
'/aspnet_client/PetersDatePackage/2_0_4/Filter.js',
'/aspnet_client/PetersDatePackage/2_0_4/CSCalendar.js',
'/aspnet_client/PetersDatePackage/2_0_4/CalKeyboard.js',
'/aspnet_client/PetersDatePackage/2_0_4/CSMonthPicker.js',
'/aspnet_client/PetersDatePackage/2_0_4/MYPKeyboard.js',
'/aspnet_client/PetersDatePackage/2_0_4/SpecialDates.js',
'/aspnet_client/PetersDatePackage/Appearance/Calendar.jpg',
'/aspnet_client/PetersDatePackage/Appearance/LeftCmd_3DBlue.GIF',
'/aspnet_client/PetersDatePackage/Appearance/SmallDownArrow.GIF',
'/aspnet_client/PetersDatePackage/Appearance/RightCmd_3DBlue.GIF',
'/aspnet_client/PetersDatePackage/Appearance/range.GIF',
'/aspnet_client/PetersDatePackage/Appearance/DateTextBox.css',
'/aspnet_client/PetersDatePackage/Appearance/Calendar.css',
'/aspnet_client/PetersDatePackage/Appearance/SpecialDates.css',
'/aspnet_client/PetersDatePackage/Appearance/ContextMenu.css',
'/aspnet_client/PetersDatePackage/Appearance/MonthYearPicker.css',
'../ISRes.axd?D/Vista.V1CloseOverActive.gif',
'../ISRes.axd?D/Vista.V1MinDown.gif',
'../ISRes.axd?D/Vista.V1RestoreDown.gif',
'../ISRes.axd?D/Vista.V1CloseDown.gif',
'../ISRes.axd?D/ISBtnLeftInActive.gif',
'../ISRes.axd?D/ISBtnCenterInactive.gif',
'../ISRes.axd?D/ISBtnRightInactive.gif',
'../ISRes.axd?D/ISBtnCenter.gif',
'../ISRes.axd?D/ISBtnLeft.gif',
'../ISRes.axd?D/ISBtnLeftActive.gif',
'../ISRes.axd?D/ISBtnRightActive.gif',
'../ISRes.axd?D/ISBtnCenterActive.gif',
'../ISRes.axd?D/ISBtnRight.gif',
'../ISRes.axd?D/Vista.V1LeftActive.gif',
'../ISRes.axd?D/Vista.V1CenterActive.gif',
'../ISRes.axd?D/Vista.V1Maxactive.gif',
'../ISRes.axd?D/Vista.V1LeftInactive.gif',
'../ISRes.axd?D/Vista.V1CloseActive.gif',
'../ISRes.axd?D/Vista.V1RightInactive.gif',
'../ISRes.axd?D/Vista.V1RightActive.gif',
'../ISRes.axd?D/Vista.V1MaxInactive.gif',
'../ISRes.axd?D/Vista.V1CloseInactive.gif',
'../ISRes.axd?D/Vista.V1CenterInactive.gif',
'../ISRes.axd?D/Vista.V1MinActive.gif',
'../ISRes.axd?D/Vista.V1RestoreActive.gif',
'../ISRes.axd?D/Vista.V1MinInactive.gif',
'../ISRes.axd?D/Vista.V1RestoreInactive.gif',
'../ISRes.axd?D/Vista.V1MaxDown.gif',
'../ISRes.axd?D/Vista.V1MinOverActive.gif',
'../ISRes.axd?D/Vista.V1RestoreOverActive.gif',
'../ISRes.axd?D/Vista.V1MaxOverActive.gif',
'../ISRes.axd?D/is_window-16.gif',
'../ISRes.axd?F/ISCore.js/305000565',
'../ISRes.axd?D/WebPaneManager.js/252007111',
'../ISRes.axd?D/WebSplitter.js/252007111',
'../ISRes.axd?D/WebAnimation.js/252007111',
'../ISRes.axd?D/WebExplorerPane.js/252007111',
'../ISRes.axd?D/WebDesktopManager.js/252007111',
'../ISRes.axd?D/WebDesktop_Runtime.js/252007111',
'../ISRes.axd?C/WebCombo.js/407200112',
'../ISRes.axd?C/WebCombo.js/407200111',
'../ISRes.axd?F/XmlCompressor.js/305000565',
'../ISRes.axd?G/WebGrid_Core.js/607200112',
'../ISRes.axd?G/WebGrid_UI.js/607200112',
'../ISRes.axd?G/WebGrid_Events.js/607200112',
'../ISRes.axd?G/WebGrid_RTSys.js/607200112',
'../ISRes.axd?G/WebGrid_Context.js/607200112',
'../ISRes.axd?G/WebGrid_Edit.js/607200112',
'../ISRes.axd?G/WebGrid_Charting.js/607200112',
'../ISRes.axd?G/WebGrid_ChartInteractiveUI.js/607200112',
'../ISRes.axd?G/WebGrid_UI.js/607200111',
'../ISRes.axd?G/WebGrid_Events.js/607200111',
'../ISRes.axd?G/WebGrid_RTSys.js/607200111',
'../ISRes.axd?G/WebGrid_Context.js/607200111',
'../ISRes.axd?G/WebGrid_Hier.js/607200111',
'../ISRes.axd?G/WebGrid_Edit.js/607200111',
'../ISRes.axd?F/ISCore_UI.js/305000565',
'../ISRes.axd?G/WebGrid_Core.js/607200111',
'../ISRes.axd?F/CultureInfo.js/305000565',
'../ISRes.axd?D/WebMenu.js/252007',
'../ISRes.axd?D/WebAnimation.js/252007',
'../ISRes.axd?D/WebButton.js/252007',
'../ISRes.axd?F/Core_DragDrop.js/305000565',
'../ISRes.axd?G/WebGrid_Charting.js/607200111',
'../ISRes.axd?G/WebGrid_ChartInteractiveUI.js/607200111',
'../ISRes.axd?G/Localization.default.xml',
'../ISRes.axd?G/wg_filter.gif',
'../ISRes.axd?G/wg5_progress_std.gif',
'../ISRes.axd?G/wg5_sep_std.gif',
'../ISRes.axd?G/wg5_help.gif',
'../ISRes.axd?G/CalendarDD.gif',
'../ISRes.axd?C/DD4_Over.gif',
'../ISRes.axd?C/DD4_Active.gif',
'../ISRes.axd?G/wg6_updatechart.gif',
'../ISRes.axd?G/wg6_bg_l.gif',
'../ISRes.axd?G/wg6_bg_l.gif',
'../ISRes.axd?G/wg6_close_s.gif',
'../ISRes.axd?G/wg_blank.gif',
'../ISRes.axd?G/wg6_fieldlist.gif',
'../ISRes.axd?G/wg6_dropzone.gif',
'../ISRes.axd?G/wg6_legend.gif',
'../ISRes.axd?G/wg6_chartfilter.gif',
'../ISRes.axd?G/wg5_sortasc.gif',
'../ISRes.axd?G/wg5_sortdesc.gif',
'../ISRes.axd?G/wg6_chart.gif',
'../ISRes.axd?G/wg6_autofilter.gif',
'../ISRes.axd?G/wg5_statusbk_std.gif',
'../ISRes.axd?G/wg6_gridview.gif',
'../ISRes.axd?G/wg6_chartview.gif',
'../ISRes.axd?C/wc4_help.gif',
'../ISRes.axd?C/wc_more.gif',
'../ISRes.axd?C/wc4_status.gif',
'../ISRes.axd?G/I.gif',
'../ISRes.axd?G/plus-xp.gif',
'../ISRes.axd?G/_.gif',
'../ISRes.axd?G/ISMenu.css/607200111',
'../ISRes.axd?D/Vista.V1Maxactive.gif',
'../ISRes.axd?D/Vista.V1LeftActive.gif',
'../ISRes.axd?D/Vista.V1RightActive.gif',
'../ISRes.axd?D/Vista.V1CloseActive.gif',
'../ISRes.axd?D/Vista.V1LeftInactive.gif',
'../ISRes.axd?D/Vista.V1MaxInactive.gif',
'../ISRes.axd?D/Vista.V1CloseInactive.gif',
'../ISRes.axd?D/Vista.V1RightInactive.gif',
'../ISRes.axd?D/Vista.V1CenterActive.gif',
'../ISRes.axd?D/Vista.V1CenterInactive.gif',
'../ISRes.axd?D/Vista.V1MinActive.gif',
'../ISRes.axd?D/Vista.V1RestoreActive.gif',
'../ISRes.axd?D/Vista.V1MinInactive.gif',
'../ISRes.axd?C/WebCombo.js/407200112',
'../ISRes.axd?F/ISCore_UI.js/305000565',
'../ISRes.axd?F/XmlCompressor.js/305000565',
'../ISRes.axd?G/WebGrid_Core.js/607200112',
'../ISRes.axd?G/WebGrid_UI.js/607200112',
'../ISRes.axd?G/WebGrid_Events.js/607200112',
'../ISRes.axd?G/WebGrid_RTSys.js/607200112',
'../ISRes.axd?G/WebGrid_Context.js/607200112',
'../ISRes.axd?D/WebMenu.js/252007',
'../ISRes.axd?D/WebAnimation.js/252007',
'../ISRes.axd?G/WebGrid_Edit.js/607200112',
'../ISRes.axd?G/Localization.default.xml',
'../ISRes.axd?G/wg_filter.gif',
'../ISRes.axd?G/wg5_progress_std.gif',
'../ISRes.axd?G/wg5_sep_std.gif',
'../ISRes.axd?G/wg5_help.gif',
'../ISRes.axd?G/CalendarDD.gif',
'../ISRes.axd?C/DD4_Over.gif',
'../ISRes.axd?C/DD4_Active.gif',
'../ISRes.axd?G/wg6_updatechart.gif',
'../ISRes.axd?G/wg6_bg_l.gif',
'../ISRes.axd?G/wg6_close_s.gif',
'../ISRes.axd?G/wg6_bg_l.gif',
'../ISRes.axd?G/wg6_close_s.gif',
'../ISRes.axd?G/wg_blank.gif',
'../ISRes.axd?G/wg6_fieldlist.gif',
'../ISRes.axd?G/wg6_dropzone.gif',
'../ISRes.axd?G/wg6_legend.gif',
'../ISRes.axd?G/wg6_chartfilter.gif',
'../ISRes.axd?G/wg5_sortasc.gif',
'../ISRes.axd?G/wg5_sortdesc.gif',
'../ISRes.axd?G/wg6_chart.gif',
'../ISRes.axd?G/wg6_autofilter.gif',
'../ISRes.axd?G/wg5_statusbk_std.gif',
'../ISRes.axd?G/WebGrid_Charting.js/607200112',
'../ISRes.axd?F/Core_DragDrop.js/305000565',
'../ISRes.axd?G/WebGrid_ChartInteractiveUI.js/607200112',
'../ISRes.axd?D/WebButton.js/252007',
'../ISRes.axd?G/Localization.default.xml',
'../ISRes.axd?G/wg6_gridview.gif',
'../ISRes.axd?G/wg6_chartview.gif',
'../ISRes.axd?F/ISCore.js/305000566',
'../ISRes.axd?F/ISCore.js/305000566',
'../ISRes.axd?F/ISCore.js/305000566',
'../ISRes.axd?D/WebPaneManager.js/252007112',
'../ISRes.axd?D/WebSplitter.js/252007112',
'../ISRes.axd?D/WebAnimation.js/252007112',
'../ISRes.axd?D/WebExplorerPane.js/252007112',
'../ISRes.axd?D/WebDesktopManager.js/252007112',
'../ISRes.axd?D/WebDesktop_Runtime.js/252007112',
'../ISRes.axd?G/ISMenu.css/607200112',
'../ISRes.axd?F/ISCore_UI.js/305000566',
'../ISRes.axd?F/XmlCompressor.js/305000566',
'../ISRes.axd?S/WebScheduler.js/101000113',
'../ISRes.axd?S/WebScheduler_Calendar.js/101000113',
'../ISRes.axd?S/WebScheduler_CallOut.js/101000113',
'../ISRes.axd?S/WebScheduler_Scheduler.js/101000113',
'../ISRes.axd?S/WebScheduler_Data.js/101000113',
'../ISRes.axd?F/CultureInfo.js/305000566',
'../ISRes.axd?F/CoreValidator.js/305000566',
'../ISRes.axd?D/WebDialogBox.js/252007',
'../ISRes.axd?D/WebDesktopManager.js/252007',
'../ISRes.axd?D/WebDesktop_Runtime.js/252007',
'../ISRes.axd?S/WebScheduler_UI.js/101000113',
'../ISRes.axd?S/BlackNormalView.png',
'../ISRes.axd?S/scheduler_collapse.gif',
'../ISRes.axd?S/ActiveView.png',
'../ISRes.axd?S/scheduler_menu.gif',
'../ISRes.axd?S/BlackLeftArrow.png',
'../ISRes.axd?S/BlackRightArrow.png',
'../ISRes.axd?S/expand.gif',
'../ISRes.axd?S/collapse.gif',
'../ISRes.axd?S/DayHeaderBlack.png',
'../ISRes.axd?S/Close.png',
'../ISRes.axd?S/BottomRight.png',
'../ISRes.axd?S/BottomLeft.png',
'../ISRes.axd?S/TopRight.png',
'../ISRes.axd?S/TopLeft.png',
'../ISRes.axd?S/blackleft.gif',
'../ISRes.axd?S/blackright.gif',
'../main/ISRes.axd?S/Now.png',
'../ISRes.axd?D/shadow_fill.png',
'../ISRes.axd?D/shadow_1.png',
'../ISRes.axd?D/shadow_2.png',
'../ISRes.axd?D/mac.button_left_active.gif',
'../ISRes.axd?D/shadow_4.png',
'../ISRes.axd?D/shadow_5.png',
'../ISRes.axd?D/shadow_6.png',
'../ISRes.axd?D/shadow_7.png',
'../ISRes.axd?D/shadow_8.png',
'../ISRes.axd?D/mac.left_active_light.gif',
'../ISRes.axd?D/mac.center_active_light.gif',
'../ISRes.axd?D/mac.right_active_light.gif',
'../ISRes.axd?D/mac.general_inactive.gif',
'../ISRes.axd?D/mac.close_over.gif',
'../ISRes.axd?D/mac.button_left_inactive.gif',
'../ISRes.axd?D/mac.button_center_inactive.gif',
'../ISRes.axd?D/mac.button_right_inactive.gif',
'../ISRes.axd?D/mac.button_center_active.gif',
'../ISRes.axd?D/shadow_3.png',
'../ISRes.axd?D/mac.button_right_active.gif',
'../ISRes.axd?S/ProgressIndicator.gif',
'../ISRes.axd?S/Indicator.png',
'../main/ISRes.axd?S/DayHeaderBlack-Hover.png',
'../main/ISRes.axd?S/DayHeaderBlack.png',
'../ISRes.axd?S/BlackTopLeft.Gif',
'../ISRes.axd?S/BlackTopRight.GIF',
'../ISRes.axd?S/BlackCloseIcon.gif',
'../ISRes.axd?S/BlackBottomLeft.gif',
'../ISRes.axd?S/BlackBottomRight.gif',
'../ISRes.axd?S/BlackTopCenter.Gif',
'../ISRes.axd?S/BlackPointingBottomLeft.gif',
'../ISRes.axd?S/BlackMiddleLeft.Gif',
'../ISRes.axd?S/BlackMiddleRight.Gif',
'../ISRes.axd?S/BlackBottomCenter.Gif',
'../ISRes.axd?D/blank.gif',
'../ISRes.axd?D/WebButton.js/252007112',
'../ISRes.axd?I/webinput.js/307200112',
'../ISRes.axd?I/clientbehaviour.js/307200112',
'../ISRes.axd?I/webinputeditor.js/307200112',
'../ISRes.axd?F/corevalidator.js/305000566',
'../ISRes.axd?F/cultureinfo.js/305000566',
'../ISRes.axd?I/MaskValidator.js/307200112',
'../ISRes.axd?I/FormatValidator.js/307200112',
'../ISRes.axd?D/WebCallOut.js/252007112',
'../ISRes.axd?D/WebMenu.js/252007112',
'../main/ISRes.axd?S/Plus.gif',
'../main/ISRes.axd?S/arrow_right.gif',
'../ISRes.axd?D/WhiteMac.TopLeft.png',
'../ISRes.axd?D/WhiteMac.TopRight.png',
'../ISRes.axd?D/WhiteMac.MiddleLeft.png',
'../ISRes.axd?D/WhiteMac.TopCenter.png',
'../ISRes.axd?D/WhiteMac.CloseIcon.gif',
'../ISRes.axd?D/WhiteMac.MiddleRight.png',
'../ISRes.axd?D/WhiteMac.BottomLeft.png',
'../ISRes.axd?D/WhiteMac.BottomCenter.png',
'../ISRes.axd?D/WhiteMac.BottomRight.png',
'../ISRes.axd?D/WhiteMac.PointingBottomRight.png',
'../main/ISRes.axd?S/TitleIcon.gif',
'../ISRes.axd?C/wc4_hbg.gif',
'../main/ISRes.axd?S/HighImportance.gif',
'../main/ISRes.axd?S/Normal.gif',
'../main/ISRes.axd?S/LowImportance.gif',
'../main/ISRes.axd?S/color_red.gif',
'../main/ISRes.axd?S/color_orange.gif',
'../main/ISRes.axd?S/color_peach.gif',
'../main/ISRes.axd?S/color_yellow.gif',
'../main/ISRes.axd?S/color_green.gif',
'../main/ISRes.axd?S/color_teal.gif',
'../main/ISRes.axd?S/color_olive.gif',
'../main/ISRes.axd?S/color_blue.gif',
'../main/ISRes.axd?S/color_maroon.gif',
'../main/ISRes.axd?S/color_darkpeach.gif',
'../main/ISRes.axd?S/color_darkblue.gif',
'../main/ISRes.axd?S/color_darksteel.gif',
'../main/ISRes.axd?S/color_grey.gif',
'../main/ISRes.axd?S/color_darkgrey.gif',
'../main/ISRes.axd?S/color_black.gif',
'../main/ISRes.axd?S/color_darkred.gif',
'../main/ISRes.axd?S/color_darkorange.gif',
'../main/ISRes.axd?S/color_darkyellow.gif',
'../main/ISRes.axd?S/color_darkgreen.gif',
'../main/ISRes.axd?S/color_purple.gif',
'../main/ISRes.axd?S/color_darkolive.gif',
'../main/ISRes.axd?S/color_darkteal.gif',
'../main/ISRes.axd?S/color_darkpurple.gif',
'../main/ISRes.axd?S/color_steel.gif',
'../main/ISRes.axd?S/color_darkmaroon.gif',
'../main/ISRes.axd?S/EditButton.gif',
'../main/ISRes.axd?S/DeleteButton.gif',
'../ISRes.axd?F/Core_DragDrop.js/305000566',
'../ISRes.axd?G/wg_arrow.gif',
'../ISRes.axd?S/ISMenu.css/101000113',
'../main/ISRes.axd?S/WebScheduler_Edit.js/101000',
'/aspnet_client/freetextbox/officemac/toolbar.horizontal.background.gif',
'/aspnet_client/freetextbox/officemac/toolbar.horizontal.start.gif',
'/aspnet_client/freetextbox/officemac/underline.gif',
'/aspnet_client/freetextbox/officemac/italic.gif',
'/aspnet_client/freetextbox/officemac/bold.gif',
'/aspnet_client/freetextbox/officemac/bulletedlist.gif',
'/aspnet_client/freetextbox/officemac/numberedlist.gif',
'/aspnet_client/freetextbox/officemac/createlink.gif',
'/aspnet_client/freetextbox/officemac/unlink.gif',
'/aspnet_client/freetextbox/officemac/cut.gif',
'/aspnet_client/freetextbox/officemac/copy.gif',
'/aspnet_client/freetextbox/officemac/paste.gif',
'/aspnet_client/freetextbox/officemac/netspell.gif',
'/aspnet_client/FreeTextBox/OfficeMac/attach.gif',
'/aspnet_client/freetextbox/officemac/toolbar.horizontal.end.gif',
'/aspnet_client/freetextbox/officemac/toolbarbuttoncss.on.over.gif',
'/aspnet_client/freetextbox/officemac/toolbarbuttoncss.off.over.gif',
'/netspell/spell.css',
'/netspell/spell.js',
clientCodePath+'Script/clsAppConfig.js',
clientCodePath+'Script/SiteConfig.js',
'../images/Rename.gif',
clientCodePath+'Images/HeaderLogo.gif',
'../Images/pngFix.png',
'../Images/edit.gif',
'../App_Themes/Gray/Images/Notepad.gif',
'../Scripts/siteConfig.js',
'../JavaScript/UpdateFolderLocation.js',
'../App_Themes/Gray/Images/search20.gif',
'../barCode/NotesStyles.css',
'../ISRes.axd?G/WebGrid_Hier.js/607200112',
'../ISRes.axd?F/CoreValidator.js/305000565',
'../ISRes.axd?G/wg_newrow.gif',
'../App_Themes/Gray/Images/btn_Refresh.gif',
'../css/CalenderCS.css',
'../JavaScript/JobCalendar.js',
'../App_Themes/Gray/Images/spacer.gif',
'../Scripts/firstpage.js',
'../ISRes.axd?D/is_progress-16.gif',
'../App_Themes/Gray/Images/com-box-bot.gif',
'../JavaScript/employeesWizard.js',
'../App_Themes/Gray/Images/btn_loaddata.gif',
'../App_Themes/Gray/Images/btn_Export.gif',
'../Scripts/addEditBuilder.js',
'../Images/rol_a.gif',
'../Images/rol_b.gif',
'../Images/rol_c.gif',
'../Images/rol_d.gif',
'../Images/rol_e.gif',
'../Images/rol_f.gif',
'../Images/rol_g.gif',
'../Images/rol_h.gif',
'../Images/rol_i.gif',
'../Images/rol_j.gif',
'../Images/rol_k.gif',
'../Images/rol_l.gif',
'../Images/rol_m.gif',
'../Images/rol_n.gif',
'../Images/rol_o.gif',
'../Images/rol_p.gif',
'../Images/rol_q.gif',
'../Images/rol_r.gif',
'../Images/rol_s.gif',
'../Images/rol_t.gif',
'../Images/rol_u.gif',
'../Images/rol_v.gif',
'../Images/rol_w.gif',
'../Images/rol_x.gif',
'../Images/rol_y.gif',
'../Images/rol_z.gif',
'../JavaScript/rolodex.js',
'../Images/rol_reset.gif',
'../Images/Cancel12.gif',
'../Images/Crewnotesdisable.gif',
'../Images/zoomOutIcon.GIF',
'../Images/zoomInIcon.GIF',
'../Images/collapse_XPblue.gif',
'../JavaScript/CrewCalendar.js',
'../JavaScript/notes.js',
'../ISRes.axd?G/WebGrid_ColumnSet.js/607200112',
'/CommonLibrary/Images/syshelp16.gif',
'../App_Themes/Gray/Images/save2.gif',
'../JavaScript/phoneMemo.js',
'../JavaScript/punchTime.js',
'../javascript/editpunchTime.js',
'../Images/Cancel.gif',
'/aspnet_client/PetersDatePackage/Appearance/rangePressed.GIF',
'../JavaScript/TimeCard.js',
'../ISRes.axd?G/WebGrid_Calendar.js/607200112',
'../JavaScript/addExpense.js',
'../ISRes.axd?G/wg5_refresh.gif',
'../Images/Search.GIF',
'../ISRes.axd?G/wg_minus.gif',
'../images/transparentpixel.gif',
'../images/true.gif',
'../Images/cancel.gif',
clientCodePath+'images/clientLogo.jpg',
'../reports/ISRes.axd?C/wc4_status.gif',
'/aspnet_client/cvlTracker/jsMsgbox/vbWarning.gif',
'/aspnet_client/cvlTracker/jsMsgbox/vbUnSuccessful.gif',
'/aspnet_client/cvlTracker/jsMsgbox/images/form_buttons.gif',
'../App_Themes/Gray/Images/searchJob.gif',
'../App_Themes/Gray/Images/searchClient.gif',
'../App_Themes/Gray/Images/searchOther.gif',
'../main/ISRes.axd?C/wc4_status.gif',
'../App_Themes/Gray/Images/setup-mark-notcomp.gif',
'../App_Themes/Gray/Images/menu/smenu-bg.gif',
'../Images/atmid.png',
'../Images/atbot.png',
'/aspnet_client/PetersDatePackage/Appearance/CalendarPressed.jpg',
'../ISRes.axd?G/min-xp.gif',
'../ISRes.axd?G/wg_currow.gif',
'../App_Themes/Gray/Images/icons/delete.gif',
'/aspnet_client/cvlTracker/jsMsgbox/vbInformation.gif',
'/aspnet_client/cvlTracker/jsMsgbox/vbSuccessful.gif',
'../App_Themes/Gray/Images/arrow-up.gif',
'../App_Themes/Gray/Images/arrow-bottom.gif',
'../Scripts/common.js',
clientCodePath+'Images/clientLogo.jpg',
'/aspnet_client/freetextbox/officemac/strikethrough.gif',
'/aspnet_client/freetextbox/officemac/separator.horizontal.gif',
'/aspnet_client/freetextbox/officemac/subscript.gif',
'/aspnet_client/freetextbox/officemac/superscript.gif',
'/aspnet_client/freetextbox/officemac/removeformat.gif',
'/aspnet_client/freetextbox/officemac/justifyleft.gif',
'/aspnet_client/freetextbox/officemac/justifycenter.gif',
'/aspnet_client/freetextbox/officemac/justifyfull.gif',
'/aspnet_client/freetextbox/officemac/indent.gif',
'/aspnet_client/freetextbox/officemac/outdent.gif',
'/aspnet_client/freetextbox/officemac/insertimage.gif',
'/aspnet_client/freetextbox/officemac/insertrule.gif',
'/aspnet_client/freetextbox/officemac/justifyright.gif',
'/aspnet_client/freetextbox/officemac/undo.gif',
'/aspnet_client/freetextbox/officemac/redo.gif',
'/aspnet_client/freetextbox/officemac/print.gif',
'/aspnet_client/freetextbox/officemac/mode.design.gif',
'/aspnet_client/freetextbox/officemac/mode.html.gif',
'../images/clientLogo.jpg',
clientCodePath+'Images/GJVFinishedField.png',
'../Maps/ISRes.axd?C/wc4_status.gif',
clientCodePath+'Images/GJVReceived.png',
clientCodePath+'Images/GJVInField.png',
clientCodePath+'Images/GJVInResearch.png',
clientCodePath+'Images/GJVDrafting.png',
clientCodePath+'Images/GJVReview.png',
clientCodePath+'Images/Point_Office.png',
'../Maps/ISRes.axd?C/wc4_hbg.gif',
'../ISRes.axd?G/wg5_applyfilter.gif',
'../ISRes.axd?G/wg5_clearfilter.gif',
'../ISRes.axd?G/wg_edit.gif',
'/aspnet_client/cvlTracker/jsMsgbox/vbQuestion.gif',
'../Images/cancelTimeCard.gif',
'../reports/ISRes.axd?C/wc4_hbg.gif',
'../ISRes.axd?G/wg_Error.gif',
'../ISRes.axd?G/wg5_header_bg.gif',
'../ISRes.axd?G/wg5_failed.gif',
'../ISRes.axd?G/I_.gif',
'../ISRes.axd?G/ICont.gif',
'../win/ISRes.axd?C/wc4_status.gif',
'../main/ISRes.axd?C/wc4_hbg.gif',
'../App_Themes/Gray/Images/btn-bg.gif',
'../barCode/ISRes.axd?C/wc4_status.gif',
'../Images/Copy.gif',
'../Images/Cut.gif',
'../Images/att_Search.gif',
clientCodePath+'attachments/survey_1/_thumbs/New%20Field%20Order_2.pdf_0001small.jpg',
'../Images/Categories/color_black.gif',
'../Images/Categories/color_blue.gif',
'../Images/Categories/color_darkblue.gif',
'../Images/Categories/color_darkgreen.gif',
'../Images/Categories/color_darkgrey.gif',
'../Images/Categories/color_darkmaroon.gif',
'../Images/Categories/color_darkolive.gif',
'../Images/Categories/color_darkorange.gif',
'../Images/Categories/Color_darkpeach.gif',
'../Images/Categories/color_darkpurple.gif',
'../Images/Categories/color_darkred.gif',
'../Images/Categories/color_darksteel.gif',
'../Images/Categories/color_darkteal.gif',
'../Images/Categories/color_darkyellow.gif',
'../Images/Categories/color_Default.gif',
'../Images/Categories/color_green.gif',
'../Images/Categories/color_grey.gif',
'../Images/Categories/color_maroon.gif',
'../Images/Categories/color_olive.gif',
'../Images/Categories/color_orange.gif',
'../Images/Categories/color_peach.gif',
'../Images/Categories/color_purple.gif',
'../Images/Categories/color_red.gif',
'../Images/Categories/color_steel.gif',
'../Images/Categories/color_teal.gif',
'../Images/Categories/color_yellow.gif',
'../WebResource.axd?d=7deM76NKfpaCqfeJXuySJaepABurg_lvQSJFi4WjBQRa8df5FNb-BLBoQ5rQASZNIuPIacIYPzYfkjVvkuqBp2u-Q_BRpk8LbAn3IACHhWYCsGZ5_K2fu_vgT9MooyX6PPWde48rwMTyXi2aeoi3GQ2&t=633466442978906250',
'../WebResource.axd?d=7deM76NKfpaCqfeJXuySJaepABurg_lvQSJFi4WjBQRa8df5FNb-BLBoQ5rQASZNIuPIacIYPzYfkjVvkuqBp2u-Q_BRpk8LbAn3IACHhWYCsGZ5_K2fu_vgT9MooyX6WR0p4ix4Vy1kL1omsfzUnQ2&t=633466442978906250',
'../Images/icons/16x16/DraftingCalendar.gif',
'../JavaScript/draftingCalendar.js',
'../JavaScript/DraftingGnattChart.js',
'../Images/ScreenShot/Projects/SimpleProject.JPG',
'../Images/ScreenShot/Projects/LargeProject.JPG',
'../Images/ScreenShot/Projects/LegacyProject.JPG',
'../Images/ScreenShot/Projects/SimpleProcjectEstimation.JPG',
'../Images/ScreenShot/Projects/ProjectFolderLocation.JPG',
'../Images/ScreenShot/Projects/TaskListEditor.JPG',
'../Images/ScreenShot/Projects/TaskUnassigned.JPG',
'../Images/ScreenShot/Projects/EditProjectOrInvoice.JPG',
'../Images/ScreenShot/Employee/setup.JPG',
'../Images/ScreenShot/Employee/UserGroups.JPG',
'../Images/ScreenShot/Employee/PayRate.JPG',
'../Images/ScreenShot/Client/setup.JPG',
'../Images/ScreenShot/Client/AuthorizedClients.JPG',
'../Images/ScreenShot/Client/Rolodex.JPG',
'../Images/ScreenShot/Client/Subcontractor.JPG',
'../Images/ScreenShot/Client/FiananceCharge.JPG',
'../Images/ScreenShot/Calendor-Notes/PersonalCalendar.JPG',
'../Images/ScreenShot/Calendor-Notes/CompanyCalendar.JPG',
'../Images/ScreenShot/Calendor-Notes/CrewCalendar.JPG',
'../Images/ScreenShot/Calendor-Notes/DraftingCalendar.JPG',
'../Images/ScreenShot/Calendor-Notes/Notes.JPG',
'../Images/ScreenShot/Calendor-Notes/PhoneMemo.JPG',
'../Images/ScreenShot/Time/PunchTime.JPG',
'../Images/ScreenShot/Time/Add-EditPunchTime.JPG',
'../Images/ScreenShot/Time/PunchedHours.JPG',
'../Images/ScreenShot/Time/TimesheetReport.JPG',
'../Images/ScreenShot/Time/TimeCard.JPG',
'../Images/ScreenShot/Time/NonProjectTime.JPG',
'../Images/ScreenShot/Time/TimeTransaction.JPG',
'../Images/ScreenShot/Time/NewExpense.JPG',
'../Images/ScreenShot/Accounts/GenerateInvoice.JPG',
'../Images/ScreenShot/Accounts/ReceivePayments.JPG',
'../Images/ScreenShot/Accounts/PaymentReport.JPG',
'../Images/ScreenShot/Accounts/Statements.JPG',
'../Images/ScreenShot/Accounts/UnpaidInvoiceReport.JPG',
'../Images/ScreenShot/Accounts/PaidInvoiceReport.JPG',
'../Images/ScreenShot/Accounts/UnbilledProjectItems.JPG',
'../Images/ScreenShot/Accounts/UnbilledItemDetail.JPG',
'../Images/ScreenShot/Accounts/TransactionReport.JPG',
'../Images/ScreenShot/Reports-Charts/MileageReport.JPG',
'../Images/ScreenShot/Reports-Charts/Login-PunchRecords.JPG',
'../Images/ScreenShot/Reports-Charts/MarketReports.JPG',
'../Images/ScreenShot/Reports-Charts/SentEmails.JPG',
'../Images/ScreenShot/Reports-Charts/TaxReport.JPG',
'../Images/ScreenShot/ProjectReports/ProjectprofitabilityReport.JPG',
'../Images/ScreenShot/ProjectReports/ProjectTimesheet.JPG',
'../Images/ScreenShot/ProjectReports/EmployeeHoursPerProject.JPG',
'../Images/ScreenShot/ProjectReports/BilledVsEstimated.JPG',
'../Images/ScreenShot/ProjectReports/BillingReport.JPG',
'../Images/ScreenShot/ProjectReports/TaskReport.JPG',
'../Images/ScreenShot/Tools/SearchProjects.JPG',
'../Images/ScreenShot/Tools/Setup.JPG',
'../Images/ScreenShot/Tools/Email.JPG',
'../Images/ScreenShot/Tools/LockScreen.JPG',
'../Images/ScreenShot/Tools/BarcodeLabels.JPG',
'../Images/ScreenShot/Tools/AddressLabels.JPG',
'../Images/ScreenShot/Tools/GeneralLabels.JPG',
'../Images/ScreenShot/Tools/ProjectLabels.JPG',
'../Images/ScreenShot/Tools/MileageCalculator.JPG',
'../Images/ScreenShot/Tools/Attachments.JPG',
'../Images/ScreenShot/Tools/DeleteJobs.JPG',
'../Images/ScreenShot/Tools/DeleteInvoice.JPG',
'../Images/ScreenShot/Map/GraphicalJobViewer.JPG',
'../Images/ScreenShot/Map/AddGeoPoints.JPG',
'../Images/ScreenShot/Map/SearchPoints.JPG',
'../Images/ScreenShot/Map/HelperProject.JPG',
'../Images/ScreenShot/Setup/ExpenseType.JPG',
'../Images/ScreenShot/Setup/Department.JPG',
'../Images/ScreenShot/Setup/Position.JPG',
'../Images/ScreenShot/Setup/BillingCategory.JPG',
'../Images/ScreenShot/Setup/Non-ProjectTimeCategory.JPG',
'../Images/ScreenShot/Setup/SimpleProjectType.JPG',
'../Images/ScreenShot/Setup/SimpleProjectStatuses.JPG',
'../Images/ScreenShot/Setup/PhaseStatuses.JPG',
'../Images/ScreenShot/Setup/ApplicationSettings.JPG',
'../Images/ScreenShot/Setup/Sites.JPG',
'../Images/ScreenShot/Setup/PaymentType.JPG',
'../Images/ScreenShot/Setup/CustomPanel.JPG',
'../Images/ScreenShot/Setup/AddLogo.JPG',
'../Images/ScreenShot/Setup/AutoEmail.JPG',
'../Images/ScreenShot/Setup/InvoiceLineItemSetting.JPG',
'../Images/ScreenShot/Setup/RequestInvoiceLineItem.JPG',
'../Images/ScreenShot/Setup/CrewCalendarCategories.JPG',
'../Images/ScreenShot/Setup/DraftingCalendatCategories.JPG',
'../Images/ScreenShot/Panels/ProjectsIAmManaging.JPG',
'../Images/ScreenShot/Panels/ProposalPendingApproval.JPG',
'../Images/ScreenShot/Panels/JobsOrderedByClient.JPG',
'../Images/ScreenShot/Panels/JobsScheculeForEntry.JPG',
'../Images/ScreenShot/Panels/SimpleProjectEstimated.JPG',
'../Images/ScreenShot/Panels/MultiTripProjects.JPG',
'../Images/ScreenShot/Panels/ActiveTasks.JPG',
'../Images/ScreenShot/Panels/JobsOverdue.JPG',
'../Images/ScreenShot/Panels/RecentNotes.JPG',
'../Images/ScreenShot/Panels/PersonalCalendar.JPG',
'../Images/ScreenShot/Panels/Projectmanager.JPG',
'../Images/ScreenShot/Panels/ChatWithOnlineStaff.JPG',
'../Images/ScreenShot/Panels/OutstandingInvoice.JPG',
'../Images/ScreenShot/Panels/ItemsNeedingApproval.JPG',
'../Images/ScreenShot/Panels/CustomPanels.JPG'
];

function captureData() {
  if (!window.google || !google.gears) 
  {
    msgbox('Gears is not installed. Please install it then try to load Gears again.','vbOkOnly or vbInformation','Information');
    return;
  }

  try 
  {
    localServer =google.gears.factory.create('beta.localserver');
  } 
  catch (ex) 
  {
     return;
  }
  
  store = localServer.openStore(STORE_NAME);  
  if (!store) 
  {
    msgbox('Loading gears files will take several minutes. Please watch the status bar at the bottom of the login box in order to check progress. Please do not login while the files are loading.','vbOkOnly or vbInformation','Information');
    document.getElementById("dvSpProgress").style.visibility="visible";
    counter=0;
    store = localServer.createStore(STORE_NAME);
    store.capture(filesToCapture, captureCallback);
  }
  else
  {
    msgbox('&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;Gears already loaded.','vbOkOnly or vbInformation','Information');
  }
}
        
var counter=0;
function captureCallback(url, success, captureId) {
    counter+= 1;
    var intCountProgress =parseInt(counter)*100/parseInt(filesToCapture.length)
    document.getElementById("spProgress").style.width=intCountProgress + "%";
    if (intCountProgress==100)
     {
      msgbox('Gears loaded successfully.','vbOkOnly or vbSuccessful','Successful');
      document.getElementById("dvSpProgress").style.visibility="hidden";
     } 
}

function removeStore() {
  if (!window.google || !google.gears) 
  {
    msgbox('Google Gear is not installed.','vbOkOnly or vbInformation','Information');
    return;
  }
  localServer =google.gears.factory.create('beta.localserver');
  // We call openStore() to test for it's existence prior to removing it
  if (localServer.openStore(STORE_NAME)) 
  {
    localServer.removeStore(STORE_NAME);
    store = null;
    msgbox('Gears files have been removed.','vbOkOnly or vbSuccessful','Successful');
  } 
  else
  {
    msgbox('No files available in gears.','vbOkOnly or vbInformation','Information');
  }
}