<!--
self.status='Bizblink Ltd';

function contact(VAR)
{
window.open(VAR,"window","status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=no,width=280,height=280");
}

function whois(VAR)
{
window.open(VAR,"whoiswindow","status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=yes,width=380,height=280");
}

function glossary(VAR)
{
window.open("/documents/glossary.asp#"+VAR+"","glossarywindow","status=no,location=no,menubar=no,toolbar=no,directories=no,resizable=no,scrollbars=yes,width=380,height=480");
}


window.focus();




function WriteDate()
{
 var months=new Array(13);
     months[1]="January";
     months[2]="February";
     months[3]="March";
     months[4]="April";
     months[5]="May";
     months[6]="June";
     months[7]="July";
     months[8]="August";
     months[9]="September";
     months[10]="October";
     months[11]="November";
     months[12]="December";
 var time=new Date();
 var lmonth=months[time.getMonth() + 1];
 var date=time.getDate();
 var year=time.getYear();
 if (year < 2000)
  year = year + 1900;
 var finalresult = "<font face='tahoma,arial' size=1 color=#CCCCCC><b>" +date + "</b> " + lmonth + " " + year + " / "
 return finalresult;
}

function Bizclock()
{
 if (!document.layers && !document.all)
  return;
 var runTime = new Date();
 var hours = runTime.getHours();
 var minutes = runTime.getMinutes();
 var seconds = runTime.getSeconds();
 var dn = "AM";
 if (hours > 12)
 {
   dn = "PM";
   hours = hours - 12;
 }
 if (hours == 0)
 {
   hours = 12;
 }
 if (minutes <= 9)
 {
   minutes = "0" + minutes;
 }
 if (seconds <= 9)
 {
   seconds = "0" + seconds;
 }
 today = WriteDate();
 movingtime = "<font face='arial' size=1 color=#424242>&nbsp;&nbsp;&nbsp;&nbsp;"+ today + " " + hours + ":" + minutes + ":" + seconds + " " + dn + "</font>";
 if (document.layers)
 {
   document.layers.clock.document.write(movingtime);
   document.layers.clock.document.close();
 }
 else if (document.all)
 {
   clock.innerHTML = movingtime;
 }
 setTimeout("Bizclock()", 1000)
}

function Bizclock()
{
 if (!document.layers && !document.all)
  return;
 var runTime = new Date();
 var hours = runTime.getHours();
 var minutes = runTime.getMinutes();
 var seconds = runTime.getSeconds();
 var dn = "AM";
 if (hours > 12)
 {
   dn = "PM";
   hours = hours - 12;
 }
 if (hours == 0)
 {
   hours = 12;
 }
 if (minutes <= 9)
 {
   minutes = "0" + minutes;
 }
 if (seconds <= 9)
 {
   seconds = "0" + seconds;
 }
 today = WriteDate();
 movingtime = ""+ today + " " + hours + ":" + minutes + ":" + seconds + " " + dn + "&nbsp;&nbsp;&nbsp;&nbsp;";
 if (document.layers)
 {
   document.layers.clock.document.write(movingtime);
   document.layers.clock.document.close();
 }
 else if (document.all)
 {
   clock.innerHTML = movingtime;
 }
 setTimeout("Bizclock()", 1000)
}

window.onload = Bizclock;

self.status='Welcome to UK DonorLink';
window.Defaultstatus='Welcome to UK DonorLink';

//Saves Scrolled position
function saveScrolltopPosition(txtScrollPos, divName)
{
	document.getElementById(txtScrollPos).value = document.getElementById(divName).scrollTop;
}

//validates
function Validate()
{
	if (!document.getElementById("chkReg1").checked) 
	{ 
		alert("You must agree to having your name placed on the UK Donorlink register if you want to continue");
		return false;
	}
	else
	{
		return true;
	}
}

-->