function RemoveGuidedFiltering()
{
	for ( i=0 ; i < document.getElementsByTagName("input").length; i++ )
	{
		if ( document.getElementsByTagName("input")[i].type == "checkbox" )
			document.getElementsByTagName("input")[i].checked = false;
	}	
}


function ShowNoResultsPopUp(title)
{
	if ( dhtmlmodal != null )
		noResultsWindow = dhtmlmodal.open("NoResults", "iframe", "/products/noProducts.aspx", title, "width=400px,height=126px,center=1,resize=0,scrolling=1");

	return false;
}


function ShowExplanationPopUp(title)
{
	if ( dhtmlmodal != null )
		explanationWindow = dhtmlmodal.open("Explanation", "iframe", "/products/guidedNavExplanation.aspx", title, "width=710px,height=490px,center=1,resize=0,scrolling=1");

	return false;
}


function ClickLink(anchorID)
{
	window.location = $("#" + anchorID).attr('href');
}
