function termsAndConditions(form)
{
var txt = 'By Clicking on the OK button you are agreeing to the following: \n\n';
if (confirm(txt + form.Licence.value))
{
return true;
}
return false;
}
function dir2frame()
{
var txt = 'This file should be viewed as part of a frame, transferring...
';
txt += '';
if (parent == self) {
document.write(txt);
}
return;
}