//contact page

//pop window with contact details
function printPage() {
document.getElementById("printPage").onclick=window.open("print.html","print","width=400, height=500, scrollbars=0,resizable=0,status=0");
}

/*---time---*/

function timeset() {
var thetime=new Date();

var nhours=thetime.getHours();
var nmins=thetime.getMinutes();
var nsecn=thetime.getSeconds();
var nday=thetime.getDay();
var nmonth=thetime.getMonth();
var ntoday=thetime.getDate();

if(nhours<10) nhours="0"+nhours;

if (nsecn<10)nsecn="0"+nsecn;

if (nmins<10)nmins="0"+nmins;

if (nday==0)nday="Thu";
if (nday==1)nday="Fri";
if (nday==2)nday="Sat";
if (nday==3)nday="Sun";
if (nday==4)nday="Mon";
if (nday==5)nday="Tue";
if (nday==6)nday="Wed";
if(nday<10) nday="0"+nday;
if(nmonth) nmonth="0"+nmonth;
ntoday-=1;



document.myform.myformin.value=nhours+":"+nmins+":"+nsecn+" "+nday+" "+nmonth+"/"+ntoday;

setTimeout('timeset()',1000);

}


window.onload=preloading;
function preloading() {
if(document.images) {
imageone=new Image();
imageone.src="photos/agenda-close.gif";
imagetwo=new Image();
imagetwo.src="photos/agenda-open.gif";
}
}

/*--end of time---*/



/*---Rollovers----Several Pages---*/

if(document.images) {
var image1=new Image()
image1.src="photos/fast-form.png";
var image2=new Image()
image2.src="photos/fast-form2.png";
}

function act() {
if(document.images)
document.images.swap.src=image2.src;
}

function inact() {
if(document.images)
document.images.swap.src=image1.src;
}

/* end of rollover */






















