var userName = new Array();
  userName[0]="henry.bryan";
    userName[1]="tony";
	
var userNameFull = new Array();
  userNameFull[0]="Intrall Consultancy";
    userNameFull[1]="tony forsey";
	
var siteName = new Array();
	siteName[0]="intrallconsultancy.co.uk";
		siteName[1]="anthonyforsey.com";
var subject = "?subject=Web Site enqiry from Intrall Consultancy.co.uk"; // enter subject for e-mail



i=0;
do userName[i]='<a href=\"mailto:' + userName[i] + '@' + siteName[i] +  subject  + '\">' + userNameFull[i] + '</a>';
while(userName[++i])


function greeting() {
Now = new Date()
Hour = Now.getHours();
if (Hour< 5)
msg ="<h3>Can't sleep? Well maybe Intrall Consultancy can help you.</h3>"
else if(Hour<12)
msg ="<h3>Good morning and welcome to Intrall Consultancy.</h3>"
else if(Hour< 18)
msg ="<h3>Good afternoon and welcome to Intrall Consultancy.</h3>"
else if (Hour< 24)
msg ="<h3>Good evening and welcome to Intrall Consultancy.</h3>"
return( msg )
}


function newWin(link,w,h,s,r) {
  var winFeatures = 'width=' + 755 + ',height=' + 600 + ',scrollbars=' + 1 + ',resizable=' + 0;
  var bookWindow = window.open(link, "", winFeatures);
}