function Change(id, name){
	document.getElementById(id).className=name;
}
function SetStatus(){window.defaultStatus='SSJ Italy: Your link to future business solutions';}
function ShowProduct(showFeature,hideFeature,showTable, hideTable){
	document.getElementById(hideFeature).className='hide';
	document.getElementById(showFeature).className='show';
}
function ShowDiagram(show, hide, prod){
	document.getElementById(prod).className='prod-diagram';
	document.getElementById(hide).className='hidden';
	document.getElementById(show).className='visible';
}
function ShowProd(prod){
	document.getElementById(prod).className='prod-show';
}
function HideProd(prod){
	document.getElementById(prod).className='prod-hide';
}
