function Show_ppic(c1)
{
	document.getElementById('ppic').src='../upfiles/dian/' + c1;
}
function Show_tag(c1,c2,c3)
{
	for(i=0;i<=8;i++)
	{
		if(i == c1)
		{
			document.getElementById('t_' + i).className='';
			if(i == 0)
			{
				document.getElementById('tnv_' + i).className='wwwww';	
			}
		}
		else
		{
			document.getElementById('t_' + i).className='disn';
			if(i == 0)
			{
				document.getElementById('tnv_' + i).className='wwwww';	
			}
		}
		if(i == c1 && c2 == "off" && i != c3)
		{
			document.getElementById('tnv_' + i).className='tnv_last';
			if(i == 0)
			{
				document.getElementById('tnv_' + i).className='wwwww';	
			}
		}
		else
		{
			if(i == c1 && c2 == "on")
			{
				document.getElementById('tnv_' + i).className='tnv_over';
				if(i == 0)
				{
					document.getElementById('tnv_' + i).className='wwwww';	
				}
			}
			else
			{
				document.getElementById('tnv_' + i).className='tnv_off';
				if(i == 0)
				{
					document.getElementById('tnv_' + i).className='wwwww';	
				}
			}
		}
	}
	if(c3 == 0)
	{
		document.getElementById('tnv_' + c3).className='wwwww';	
	}
	else
	{
		document.getElementById('tnv_' + c3).className='tnv_on';
	}
}