





function Set_Display(obj)
{
	if (obj.style.display == 'none')
		obj.style.display = 'block';
	else
		obj.style.display = 'none';
}
function Set_Line(obj)
{
	if (event.type == 'mouseover') {
		obj.style.textDecoration = 'underline';
		obj.style.color='#428EFF';
		}
	else 
		{
		obj.style.textDecoration = 'none';
		obj.style.color='#215DC6';
		}
}

function stat()
{
win=open('status.ztnuc','win','width=500,height=550,top=50,left=50,scrollbars=1');
}

function views()
{
win=open('views.php','win','width=350,height=350,top=50,left=50,scrollbars=1');
}
