

<!-- The Date -->
    month = new Array(12);
      month[0]="January"
      month[1]="February"
      month[2]="March"
      month[3]="April"
      month[4]="May"
      month[5]="June"
      month[6]="July"
      month[7]="August"
      month[8]="September"
      month[9]="October"
      month[10]="November"
      month[11]="December"

    day = new Array(7);
      day[0]="Sunday"
      day[1]="Monday"
      day[2]="Tuesday"
      day[3]="Wednesday"
      day[4]="Thursday"
      day[5]="Friday"
      day[6]="Saturday"

today=new Date();
dy=today.getDay();
date=today.getDate();
mo=today.getMonth();
yr=today.getFullYear();


<!-- Status Bar Effects for Footer Links -->
peach = 'Authorized Peachtree Accounting Resource Center';
design = 'Let Us Build Your Custom Designed Web Site';
consult = 'Let Us Help Structure Your Business!  Schedule Your Consultation';
who = "Click now to learn more about Computer Support Services";
solution = "Solutions to all of your Computer and Internet needs";
contact = "Contact any member of the Computer Support Services Team";
home = "Return to Computer Support Services Home Page";
web = "Visit Our Web Design Team to Get Your Own Custom Web Site";
dm = "Computer Support Services - Your Complete Computer and Internet Solution";

// Status Bar Effects for Contact Us page
cj = "Contact C. J. Channing - V.P. Peachtree Support";
td = "Contact Tim Dallacqua - V.P. Development and Programming";
dw = "Contact Devin Wooldridge - Network and Hardware Manager";
bh = "Contact Bart Holmes - Custom Orders and Forms";
mf = "Contact Maryann Fiore - Peachtree Accounting and Bookkeeping Support";
wm = "Contact The Compter Support Services Webmaster with Questions or Comments";
rf = "Contact Robert Factor - Finance, Cost Accounting and Custom Reports";
jp = "Contact Jerry Predaris - Peachtree Certified - DOS and Windows";

ex = "Click now to view examples of our work";

<!-- Disable right mouse click Script -->
var message="Sorry, right click has been disabled!\nFor information contact the webmaster@websingold.com";
function click(e) {
if (document.all) {
if (event.button==2||event.button==3) {
alert(message);
return false;
}
}
if (document.layers) {
if (e.which == 3) {
alert(message);
return false;
}
}
}
if (document.layers) {
document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;


<!-- require fields for info page -->

function FrontPage_Form1_Validator(theForm)
{

  if (theForm.firstname.value == "")
  {
    alert("Please enter a value for the \"firstname\" field.");
    theForm.firstname.focus();
    return (false);
  }

  if (theForm.lastname.value == "")
  {
    alert("Please enter a value for the \"lastname\" field.");
    theForm.lastname.focus();
    return (false);
  }

  if (theForm.email.value == "")
  {
    alert("Please enter a value for the \"email\" field.");
    theForm.email.focus();
    return (false);
  }

  if (theForm.Comments.value == "")
  {
    alert("Please enter a value for the \"Comments\" field.");
    theForm.Comments.focus();
    return (false);
  }
  return (true);
}

// Popup window for examples of our work
// this function calls a popupWindow where
// win is the page address i.e. '../page.htm'
// and must be specified when the function is called

function popupWindow(win){
	
	newWindow = window.open(win,'newWin','toolbar=no,left=200,top=173,scrollbars=no,resizable=no,width=400,height=300');
	newWindow.focus();
}


// Rollovers for the contact us page
if (document.images){

CIa = new Image(300,70);
CIa.src = "images/rolllogo.gif";
CIb = new Image(300,70);
CIb.src = "images/rollcj.gif";
CIc = new Image(300,70);
CIc.src = "images/rolltd.gif";
CId = new Image(300,70);
CId.src = "images/rolldw.gif";
CIe = new Image(300,70);
CIe.src = "images/rollrf.gif";
CIf = new Image(300,70);
CIf.src = "images/rollmf.gif";
CIg = new Image(300,70);
CIg.src = "images/rollwm.gif";
CIh = new Image(300,70);
CIh.src = "images/rolljp.gif";

CI1_h = new Image(300,70);
CI1_h.src = "images/rollingold.gif";
CI2_h = new Image(300,70);
CI2_h.src = "images/rollcj.gif";
CI3_h = new Image(300,70);
CI3_h.src = "images/rolltd.gif";
CI4_h = new Image(300,70);
CI4_h.src = "images/rolldw.gif";
CI5_h = new Image(300,70);
CI5_h.src = "images/rollrf.gif";
CI6_h = new Image(300,70);
CI6_h.src = "images/rollmf.gif";
CI7_h = new Image(300,70);
CI7_h.src = "images/rollwm.gif";
CI8_h = new Image(300,70);
CI8_h.src = "images/rolljp.gif";
}
function cb(){if(document.images&&loaded){return true}else{return false}}


if (parent.location.href == self.location.href){
    // change the url below to the url of the
    // frameset page...
    window.location.href = 'index.htm'
}
