
/*********************************************************
  Disable right mouse click Script
  By Maximus (maximus@nsimail.com) w/ mods by DynamicDrive
  For full source code, visit http://www.dynamicdrive.com
*********************************************************/
var message="Sorry, but this feature has been disabled.";
function clickIE4(){if (event.button==2){alert(message);return false;}}
function clickNS4(e){
if (document.layers||document.getElementById&&!document.all){
if (e.which==2||e.which==3){alert(message);return false;}}
}
if (document.layers){document.captureEvents(Event.MOUSEDOWN);document.onmousedown=clickNS4;}
else if (document.all&&!document.getElementById){document.onmousedown=clickIE4;}
document.oncontextmenu=new Function("alert(message);return false")



/****************************************************
     Script to protect e-mail addresses
     Author: Daniel Insley Url: Bravenet.com
****************************************************/
function mailto(domain,user) 
{ 
document.location.href = "mailto:" + user + "@" + domain;
}


/****************************************************
     Script to create password protected area
     created by Steve G0KVZ
****************************************************/
function askData() {
var password = ''
password=prompt('Please enter Admin\' code:','');
if (password != "") {
top.location.href= "./_" + password + "/index.htm"
<!-- location.href= "steve.htm" -->
}};
// End -->
<!-- Begin
function goDown() {
 {
location.href="./index.htm";
}}

function askData2() {
var location;
var password;
password=this.document.testform.inputbox.value
location=password + ".html"
fetch(location)

}

/*******************************************
Ticker for the info window of IE
********************************************/
function scrollit(seed)
{var m1 = "We specialise in the sourcing and";
	var m2 = " supply of all of your technological";
	var m3 = " needs. (Tel 07092-157710)";
	var msg=m1+m2+m3;
	var out = " ";
	var c   = 1;

	if (seed > 100)  {
		seed--;
		var cmd="scrollit (" + seed + ")";
		timerTwo=window.setTimeout (cmd,100);
}
else if (seed <= 100 && seed > 0) {
	for (c=0 ; c < seed ; c++) {
	out+=" ";
	}
	out+=msg;
	seed--;
	var cmd="scrollit (" + seed + ")";
		window.status=out;
	timerTwo=window.setTimeout (cmd,100);
}
else if (seed <=0)  {
	if (-seed <msg.length)  {
		out+=msg.substring(-seed,msg.length);
		seed--;
		var cmd="scrollit(" + seed + ")";
		window.status=out;
		timerTwo=window.setTimeout (cmd,100);
	}
	else {
		window.status=" ";
		timerTwo=window.setTimeout("scrollit(100)",75);
	}
	}
	}
