function boldIt(theText) {
   if (document.styleSheets) theText.style.color='red';
}
function unBoldIt(theText) {
   if (document.styleSheets) theText.style.color='black';
}
var warn="TecNet Software Services Ltd (07767) 897708";
function click(e) { //3.0
	if (document.all) {
		if (event.button == 2 || event.button == 3 || event.button == 6 || event.button == 7) {
			alert(warn);
			return false;
			}
	}
	if (document.layers) {
		if (e.which == 3) {
			alert(warn);
			return false;
			}
	}
}
if (document.layers) {
	document.captureEvents(Event.MOUSEDOWN);
}
document.onmousedown=click;

if (top.frames.length < 2 ) {
	top.location="index.html";
}
