var right_click_text	= "This action is not permitted...";			// Right click text...
var hide_status			= "yes";										// Hide the window status
var status_text			= "www.starrshots.com";						// Change the default Window Status text

document.write('<META HTTP-EQUIV="imagetoolbar" CONTENT="no">');
document.write('<script language="JavaScript">');
document.write('function noRightClick() {');
document.write('if (event.button==2) {');
document.write('alert(\''+right_click_text+'\')');
document.write('}');
document.write('}');
document.write('document.onmousedown=noRightClick;');
document.write('document.onmouseover=hidestatus;');
document.write('document.onmouseout=hidestatus;');
document.write('</script>');


// MOUSEOVER STATUS
if (hide_status == "yes")
	{
		function hidestatus()
		{
			window.status=status_text;
			return true
		}
	}

// HOMEPAGE IMAGE FADE
function high(fader2)
{
	theobject=fader2;
	highlighting=setInterval("highlightit(theobject)",100);
}

function low(fader2)
{
	clearInterval(highlighting);
	fader2.filters.alpha.opacity=100;
}

function highlightit(cur2)
{
	if(cur2.filters.alpha.opacity<100)
		cur2.filters.alpha.opacity+=5
	else if(window.highlighting)
		clearInterval(highlighting)
}