/*
	Used to dynamically change images on the site.
*/
function tp_changeimage(image, url) 
{
	image.src = url;
	
	return false;
}


/*
	Opens a URL in a new window.
*/
function tp_show_external_resource(url, width, height)
{
	window.open(url,'','toolbar=no,location=no,status=no,menubar=no,scrollbars=no,resizable=yes,width='+width+',height='+height);
	
	return false;
}


/*
	Updates the page location.
*/
function tp_location(new_location)
{
	document.location = new_location;
	
	return false;
}


/*
	Menu Control.
*/
var tp_menu_active = false;
function tp_menu_show(show_section)
{
	tp_menu_active = true;
	
	var sections = new Array("services", "ourclients", "seo", "multimedia", "aboutus", "contact", "clientarea");
	
	for (var i = 0; i < sections.length; i++)
	{
		document.getElementById('area_dropdowns_'+sections[i]).style.display = 'none';
	}
	
	document.getElementById('area_dropdowns_'+show_section).style.display = 'block';
	setTimeout("tp_menu_check(\""+show_section+"\");", 500);
	
	return false;
}
function tp_menu_check(show_section)
{
	if (document.getElementById('area_dropdowns_'+show_section).style.display == 'block')
	{
		if (!tp_menu_active)
		{
			document.getElementById('area_dropdowns_'+show_section).style.display = 'none';
		}
		else
		{
			setTimeout("tp_menu_check(\""+show_section+"\");", 500);
		}
	}
}
function tp_menu_activate()
{
	tp_menu_active = true;
}
function tp_menu_deactivate()
{
	tp_menu_active = false;
}
