// JavaScript Document

function show(oid)
{
	var a = elementObject(oid);
	a.style.visibility = 'visible';
	a.style.display = 'block';
}

function hide(oid)
{
	var b = elementObject(oid);	
	b.style.visibility = 'hidden';
	b.style.display = 'none';
}

function fadeImg()
{
	show('right_img')
	hide('right_txt');		
}

function fadeTxt()
{
	show('right_txt');	
	hide('right_img');	
}

function showcursorloading(a)
{
	if (a == false)
	{
		document.body.cursor = 'pointer';
	} else {
		document.body.cursor = 'default';
	}
}