// JavaScript Document

function showSpecials(divId, obj)
{
	document.getElementById(divId).style.visibility = "visible"; 
	document.getElementById(divId).style.display = "block"; 
	obj.style.width = "400px"; 
	
}
function hideSpecials(divId, obj)
{
	document.getElementById(divId).style.visibility = "hidden"; 
	document.getElementById(divId).style.display = "none"; 
	obj.style.width = "300px";
}
