/**
* 
*/

colour = "c1";
upholstery = "u1";

function showColour(id)
{
	if (colour != id)
	{
		document.getElementById(colour).style.display = 'none';
		colour = id;
		document.getElementById(colour).style.display = 'block';
	}
}

function showUpholstery(id)
{
	if (upholstery != id)
	{
		document.getElementById(upholstery).style.display = 'none';
		upholstery = id;
		document.getElementById(upholstery).style.display = 'block';
	}
}

function newSpecWin(name, addr)
{
	window.open(addr,name,'height=440,width=624,directories=0,location=0,menubar=0,resizable=1,scrollbars=1,toolbar=0');
}

function newWin(name, addr)
{
	window.open(addr,name,'directories=0,location=0,menubar=0,resizable=1,scrollbars=1,toolbar=0')
}