function window_open(link,width,height,param)
{
	window.open(link,'print','width='+width+',height='+height+param);
}

function onmouseover_2(image_id)
{
	document.getElementById('image_'+image_id).style.borderColor = '#019FD8';
	if(window.opera)
	{
//		test = document.getElementById('span_'+image_id);
		eval('test = document.layers.span_'+image_id+';');

		test.style.visibility = 'visible';
	}
	else
		document.getElementById('span_'+image_id).style.display = '';
}

function onmouseout_2(image_id)
{
	document.getElementById('image_'+image_id).style.borderColor = '#D9D9D9';

	if(window.opera)
	{
//		document.getElementById('span_'+image_id).style.
//		eval('document.layers.["span_'+image_id+'"]. visibility = "hidden";');
	}
	else
		document.getElementById('span_'+image_id).style.display = 'none';
}

function onmouseover_3(image_id)
{
	document.getElementById('span_'+image_id).style.display = '';
}

function onmouseout_3(image_id)
{
	document.getElementById('span_'+image_id).style.display = 'none';
}

