/* function init()
{
	setInterval("scroll()", 100);
}

function scroll()
{
	var div = document.getElementById('roller');
	var height = div.offsetHeight;
	
	if (parseInt(div.style.top) > -height)
	{
		div.style.top = parseInt(div.style.top) - 1 + "px";
	}
	else
	{
		div.style.top = "100px";
	}
} */


function showContact(div,obj)
{
	var box = document.getElementById('contact_'+div);
	
	if (box)
	{
		box.style.display = "block";
		obj.style.textDecoration = "underline";
		obj.style.cursor = "pointer";
	}
}

function hideContact(div,obj)
{
	var box = document.getElementById('contact_'+div);
	
	if (box)
	{
		box.style.display = "none";
		obj.style.textDecoration = "none";
	}
}


/***********************************************
* AnyLink Drop Down Menu- © Dynamic Drive (www.dynamicdrive.com)
* This notice MUST stay intact for legal use
* Visit http://www.dynamicdrive.com/ for full source code
***********************************************/

//Contents for Services menu
var serv_menu=new Array()
serv_menu[0]='<a href="/ourservices.aspx">Our Services</a>'
serv_menu[1]='<a href="/recoveries.aspx">Insurance Recoveries</a>'
serv_menu[2]='<a href="/general.aspx">Debt Recovery</a>'
serv_menu[3]='<a href="/technology.aspx">Innovative Technology</a>'

//Contents for Why use us
var why_menu=new Array()
why_menu[0]='<a href="/compliance.aspx">Legislative Compliance</a>'
why_menu[1]='<a href="/quality.aspx">Quality Assurance</a>'
why_menu[2]='<a href="/memberships.aspx">Association Memberships</a>'

//Contents for About us
var about_menu=new Array()
about_menu[0]='<a href="/history.aspx">History</a>'
about_menu[1]='<a href="/philosophy.aspx">Philosophy</a>'
about_menu[2]='<a href="/overview.aspx">Overview</a>'
about_menu[3]='<a href="/board.aspx">Board of Directors</a>'
about_menu[4]='<a href="/executive.aspx">Executive Team</a>'
about_menu[5]='<a href="/people.aspx">People Policies</a>'

//Contents for Careers
var car_menu=new Array()
car_menu[0]='<a href="/people.aspx">People Policies</a>'
car_menu[1]='<a href="/vacancies.aspx">Current Vacancies</a>'
car_menu[2]='<a href="/application.aspx">Application Form</a>'

//Contents for Contact
var cont_menu=new Array()
cont_menu[0]='<a href="/enquiryform.aspx">Additional Information</a>'
cont_menu[1]='<a href="/contactus.aspx">Contact Details</a>'
cont_menu[2]='<a href="/privacy.aspx">Privacy Policy</a>'

//Contents for News
var news_menu=new Array()
news_menu[0]='<a href="/news.aspx">Latest News</a>'
news_menu[1]='<a href="/newsletters.aspx">Newsletters</a>'
news_menu[2]='<a href="/archive.aspx">Archived Items</a>'

var menuwidth='165px' 
var menubgcolor=' #EFEFEF' 
var disappeardelay=500  // menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?


var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
	document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype)
{
	var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
	var parentEl=what.offsetParent;
	while (parentEl!=null)
	{
		totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
		parentEl=parentEl.offsetParent;
	}
	return totaloffset;
}

function showhide(obj, e, visible, hidden, menuwidth)
{
	if (ie4||ns6)
		dropmenuobj.style.left=dropmenuobj.style.top="-500px"
	if (menuwidth!="")
	{
		dropmenuobj.widthobj=dropmenuobj.style
		dropmenuobj.widthobj.width=menuwidth
	}
	if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
		obj.visibility=visible
	else if (e.type=="click")
		obj.visibility=hidden
}

function iecompattest()
{
	return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge)
{
	var edgeoffset=0
	if (whichedge=="rightedge")
	{
		var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
		dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
		if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
			edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
	}
	else
	{
		var topedge=ie4 && !window.opera? iecompattest().scrollTop : window.pageYOffset
		var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
		dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
			if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
			{ //move up?
				edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
			if ((dropmenuobj.y-topedge)<dropmenuobj.contentmeasure) //up no good either?
				edgeoffset=dropmenuobj.y+obj.offsetHeight-topedge
			}
	}
	return edgeoffset
}

function populatemenu(what)
{
	if (ie4||ns6)
	dropmenuobj.innerHTML=what.join("")
}

function dropdownmenu(obj, e, menucontents, menuwidth)
{
	if (window.event) event.cancelBubble=true
	else if (e.stopPropagation) e.stopPropagation()
	clearhidemenu()
	dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
	populatemenu(menucontents)

	if (ie4||ns6){
		showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
		dropmenuobj.x=getposOffset(obj, "left")
		dropmenuobj.y=getposOffset(obj, "top")
		dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
		dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
	}

	return clickreturnvalue()
}

function clickreturnvalue()
{
	if (ie4||ns6) return false
	else return true
}

function contains_ns6(a, b) 
{
	while (b.parentNode)
		if ((b = b.parentNode) == a)
		return true;
	return false;
}

function dynamichide(e)
{
	if (ie4&&!dropmenuobj.contains(e.toElement))
		delayhidemenu()
	else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
		delayhidemenu()
}

function hidemenu(e)
{
	if (typeof dropmenuobj!="undefined")
	{
		if (ie4||ns6)
			dropmenuobj.style.visibility="hidden"
	}
}

function delayhidemenu()
{
	if (ie4||ns6)
		delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu()
{
	if (typeof delayhide!="undefined")
		clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu


/***********************************************
*
* Validate Forms
*
***********************************************/


function checkform()
{
	if (document.app.name.value == '')
	{
		// something is wrong
		alert('Please enter your name');
		return false;
	}
	else if (document.app.email.value == '')
	{
		// something else is wrong
		alert('Please enter your email address');
		return false;
	}
	else if (document.app.address.value == '')
	{
		// something else is wrong
		alert('Please enter your address');
		return false;
	}
	else if (document.app.city.value == '')
	{
		// something else is wrong
		alert('Please enter your city');
		return false;
	}
	else if (document.app.state.value == '')
	{
		// something else is wrong
		alert('Please enter your state');
		return false;
	}
	else if (document.app.pcode.value == '')
	{
		// something else is wrong
		alert('Please enter your postcode');
		return false;
	}
	else if (document.app.country.value == '')
	{
		// something else is wrong
		alert('Please enter your country');
		return false;
	}
	else if (document.app.phone.value == '')
	{
		// something else is wrong
		alert('Please enter your phone');
		return false;
	}
	// If the script gets this far through all of your fields
	// without problems, it's ok and you can submit the form
	return true;
}

function checkform2()
{
	if (document.enc.name.value == '')
	{
		// something is wrong
		alert('Please enter your name');
		return false;
	}
	else if (document.enc.email.value == '')
	{
		// something else is wrong
		alert('Please enter your email address');
		return false;
	}
	// If the script gets this far through all of your fields
	// without problems, it's ok and you can submit the form
	return true;
}

function checkform3()
{
	if (document.sub.name.value == '')
	{
		// something is wrong
		alert('Please enter your name');
		return false;
	}
	else if (document.sub.email.value == '')
	{
		// something else is wrong
		alert('Please enter your email address');
		return false;
	}
	// If the script gets this far through all of your fields
	// without problems, it's ok and you can submit the form
	return true;
}
