<!--
function popup(w) {
	window.open(w,'info','toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,width=332,height=380,left=40,top=80');
}

var lastel = null;

function flip_node(n, onlyhide){
	imgon = "url('http://images.thesafeshop.co.uk/tabs/sidegrey-header.jpg')";
	imgoff = "url('http://images.thesafeshop.co.uk/tabs/wider/side_white-grey.gif')";
	
	el = document.getElementById(n + "Inner"); // Options in Box
	elHead = document.getElementById(n + "Head"); // Box Heading
	
	if(el)
	{	if (onlyhide)
		{	el.style.display="none";
			elHead.style.background = imgoff;
		} else
		{	if (el.style.display=="" || el.style.display=="block")
			{	el.style.display = "none";
				elHead.style.background = imgoff;
			}else
			{	el.style.display = "block";
				elHead.style.background = imgon;
			}
		}
	}
}

function flip_narrow(n)
{	if (lastel!=null && lastel!=n)
	{	flip_node(lastel, true);
	}
	
	flip_node(n);
	lastel = n;
}

function swapDescr(id){
	switch(document.getElementById(id+"_desc_short").style.display){
		case "none":
			document.getElementById(id+"_desc_short").style.display = "inline";
			document.getElementById(id+"_desc_long").style.display = "none";
			break;
		default:
			document.getElementById(id+"_desc_short").style.display = "none";
			document.getElementById(id+"_desc_long").style.display = "inline";
	}
}
-->
