// JavaScript Document

function swapPreview(img)
{
	id = 'preview';
	dir = '';
	
	MM_swapImage(id,'',img ,0); 
	
	pv = document.getElementById('preview');
	if (pv.className == '') pv.className='imgborder';	
}

function swapHighlight(id, on)
{
	if (on == false)
	{ $img = '/_images/_artists/img_green_box_off.jpg'; }
	else { $img = '/_images/_artists/img_green_box_on.jpg'; }

	pv = document.getElementById(id);

	//if (pv.src == $on)
	//{ $img = $off; } else { $img = $on; }

	MM_swapImage(id, '', $img,0);
}

function swapTitle(artist)
{
	img = '/_images/_artist_titles/' + artist + '.gif';
	
	if (document.getElementById('img_title'))
	{
		title = document.getElementById('img_title');
		title.src = img
	}
//	$img = '/_images/_artist_titles/' + artist + '.gif';

//	MM_swapImage('title', '', $img, 0);
}