
<!--//copyright date

function copyright(){

theDate = new Date();
theYear = theDate.getFullYear();

document.write(theYear);

}

//-->

// JavaScript Document


<!--//start display day/date code

DaysofWeek = new Array()
DaysofWeek[0]="Sunday"
DaysofWeek[1]="Monday"
DaysofWeek[2]="Tuesday"
DaysofWeek[3]="Wednesday"
DaysofWeek[4]="Thursday"
DaysofWeek[5]="Friday"
DaysofWeek[6]="Saturday"

Months = new Array()
Months[0]="January"
Months[1]="February"
Months[2]="March"
Months[3]="April"
Months[4]="May"
Months[5]="June"
Months[6]="July"
Months[7]="August"
Months[8]="September"
Months[9]="October"
Months[10]="November"
Months[11]="December"


function fixNumber(the_number){
	if (the_number < 10){
		the_number = "0" + the_number;
		}
	return the_number;
}




	var	dayVal;
	var timeVal=new Date()
	var da=timeVal.getDate()
	var mo=timeVal.getMonth()
	var year=timeVal.getFullYear()
	var showDay=DaysofWeek[timeVal.getDay()]
	var showMonth=Months[timeVal.getMonth()]

	var the_date = (showMonth+" "+da+", "+year+"  ")

function showTime(){
	var timeValue = the_date;
	document.write(timeValue);
}


//-->

<!--//popup window

function newWindow(varURL) {
	  window.open(varURL,"","width=600,height=500,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
	}

	
	
	function newWindow1(varURL) {
	  window.open(varURL,"","width=400,height=450,toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes")
	}
//-->


<!--//rollovers


aboutus1=new Image();
aboutus1.src="images/about.gif";

aboutus1on=new Image();
aboutus1on.src="images/about1.gif";

products1=new Image();
products1.src="images/products.gif";

products1on=new Image();
products1on.src="images/products1.gif";

services1=new Image();
services1.src="images/services.gif";

services1on=new Image();
services1on.src="images/services1.gif";

contact1=new Image();
contact1.src="images/contact.gif";

contact1on=new Image();
contact1on.src="images/contact1.gif";

clients1=new Image();
clients1.src="images/clients.gif";

clients1on=new Image();
clients1on.src="images/clients1.gif";

testimonials1=new Image();
testimonials1.src="images/testimonials.gif";

testimonials1on=new Image();
testimonials1on.src="images/testimonials1.gif";

testimonials2=new Image();
testimonials2.src="images/more_testimonials.gif";

testimonials2on=new Image();
testimonials2on.src="images/more_testimonials1.gif";

publications1=new Image();
publications1.src="images/publications.gif";

publications1on=new Image();
publications1on.src="images/publications1.gif";

login1=new Image();
login1.src="images/login.gif";

login1on=new Image();
login1on.src="images/login1.gif";

home1=new Image();
home1.src="images/home.gif";

home1on=new Image();
home1on.src="images/home1.gif";

//


function imageChange(imageID, imageName) {
{
document[imageID].src=eval(imageName+".src");
}
}



//-->