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...<BR>';
       txt += '<META HTTP-EQUIV="refresh" CONTENT="2;URL=http://www.numeritek.com">';
    
    if (parent == self) {
	document.write(txt);
    }
    return;
}
    

