
function showhide(id){ 
if (document.getElementById)
{ 
	obj = document.getElementById(id);
	bwidth = document.body.clientWidth;
	if (obj.style.display == "none"){ 
		obj.style.display = ""; 
		obj.style.left = parseInt(bwidth/2 - 332);
	} 
	else { 
		obj.style.display = "none"; 
	} 
} 
} 

function showhideproducts(id){ 
if (document.getElementById)
{ 
	obj = document.getElementById(id);
	bwidth = document.body.clientWidth;
	if (obj.style.display == "none"){ 
		obj.style.display = ""; 
		obj.style.left = parseInt(bwidth/2 - 152);
	} 
	else { 
		obj.style.display = "none"; 
	} 
} 
} 

function showhidepromo(id){ 
if (document.getElementById)
{ 
	obj = document.getElementById(id);
	bwidth = document.body.clientWidth;
	if (obj.style.display == "none"){ 
		obj.style.display = ""; 
		obj.style.left = parseInt(bwidth/2 - 307);
	} 
	else { 
		obj.style.display = "none"; 
	} 
} 
} 
