// JavaScript Document

function switchProductPage(categoryName)
{
	ColdFusion.navigate('/includes/products_'+categoryName+'.html','productsWrap');
}

function switchStockistPage(locationCat)
{
	ColdFusion.navigate('/includes/locations_'+locationCat+'.cfm','stockistsWrap');
}

var bViewPolicies = false;
function toggleShoppingPolicies(targetContainer,actionLink)
{
	if(bViewPolicies){
		bViewPolicies = false;
		document.getElementById(targetContainer).style.display = 'none';
		document.getElementById(targetContainer).style.visibility = 'hidden';
		document.getElementById(actionLink).innerHTML = "Read here...";
	}
	else{
		bViewPolicies = true;
		document.getElementById(targetContainer).style.display = 'block';
		document.getElementById(targetContainer).style.visibility = 'visible';
		document.getElementById(actionLink).innerHTML = "Hide details...";
	}
}


// MySpace social bookmarking post code:

function GetThis(T, C, U, L)
{
var targetUrl = 'http://www.myspace.com/index.cfm?fuseaction=postto&' + 't=' + encodeURIComponent(T) + '&c=' + encodeURIComponent(C) + '&u=' + encodeURIComponent(U) + '&l=' + L;
window.open(targetUrl);
}

