function getResoltn(pWidth) 
{ 
	if (screen.width>pWidth || navigator.appName=='Opera')
	{
		document.getElementById('Scroller1').style.display="none";
		document.getElementById('Scroller2').style.display="none";
	}	
}
var Timer;
function ScrollLeft()
{
	Timer=setInterval("document.getElementById('panorama').scrollLeft-=5",15);
	document.getElementById('SLeft1').style.background="#000000";
	document.getElementById('SLeft1').style.color="#ffffff";
	document.getElementById('SLeft2').style.background="#000000";
	document.getElementById('SLeft2').style.color="#ffffff";
}
function ScrollRight()
{
	Timer=setInterval("document.getElementById('panorama').scrollLeft+=5",15);
	document.getElementById('SRight1').style.background="#000000";
	document.getElementById('SRight1').style.color="#ffffff";
	document.getElementById('SRight2').style.background="#000000";
	document.getElementById('SRight2').style.color="#ffffff";
}
function setScrollerColorLeft()
{
	document.getElementById('SLeft1').style.background="#ffffff";
	document.getElementById('SLeft1').style.color="#004dcc";
	document.getElementById('SLeft2').style.background="#ffffff";
	document.getElementById('SLeft2').style.color="#004dcc";
}
function setScrollerColorRight()
{
	document.getElementById('SRight1').style.background="#ffffff";
	document.getElementById('SRight1').style.color="#004dcc";
	document.getElementById('SRight2').style.background="#ffffff";
	document.getElementById('SRight2').style.color="#004dcc";
}
