//show message on the status bar
var hellotext = "Contact us UK Call FREE 0800 081 1988 OR Spain - Tel/Fax (00 34) 952 56 76 50 - OR - E-mail : info@GoulbournAssociates.com"
var thetext = "";
var started = false;
var step = 0;
var times = 1;

function welcometext() {
times--;
if (!times) {
if (!started) {
started = true;
window.status = hellotext;
setTimeout("anim()", 1);
}
thetext = hellotext;
   }
}

function anim() {
step++;
if (step==7) step = 1;
if (step==1) window.status = '>===' + thetext + '===<';
if (step==2) window.status = '=>==' + thetext + '==<=';
if (step==3) window.status = '>=>=' + thetext + '=<=<';
if (step==4) window.status = '=>=>' + thetext + '<=<=';
if (step==5) window.status = '==>=' + thetext + '=<==';
if (step==6) window.status = '===>' + thetext + '<==='
setTimeout("anim()", 200);
}

//Remove the dotted line around links
function RemoveDot()
{
for (a in document.links) document.links[a].onfocus = document.links[a].blur;
}
if (document.all)
{
document.onmousedown = RemoveDot;
}
file:

<!--
// Hide script from old browsers
	function Item (url) {newWindow = window.open(url , "newjavapop", "width=350,height=230,resizable=yes,menubar=no,directories=no,toolbar=no,scrollbars=yes,status=yes")}
// End hiding script from old browsers
// -->
// Open new window in Flash
function openWindow(url, w, h) {
var windowprops = "menubar=No,toolbar=No,location=No,status=Yes,scrollbars,resizable,width=" + w + ",height=" + h;
popup = window.open(url,'remote',windowprops);
}
// Open new window
//function openWindow(url, w, h) {
//var windowprops = "menubar=No,toolbar=No,location=No,status=No,scrollbars,resizable,width=" + w + ",height=" + h;
//popup = window.open(url,'remote',windowprops);
//}

// Show picture in large box
function showpiccy(filebox)
	{
		document.getElementById("imagespace").innerHTML = '<img src= "'+ filebox + '" alt="Image Preview" />'
	}

//Show/hide nav options
function showhideQuickLinks(strname){
	if (document.getElementById(strname).style.display == "none") {
		document.getElementById(strname).style.display = "";
	} else {
		document.getElementById(strname).style.display = "none";
	}
}
