//1.
function doBlink()
{
var blink = document.all.tags('BLINK')
for (var i=0; i < blink.length; i++)
  blink[i].style.visibility = blink[i].style.visibility == '' ? 'hidden' : '' ;
}
if (document.all) setInterval('doBlink()',1000);

//2.
top.document.title=document.title;

//3.
// Set the message for the alert box
am = "Function disabled !";
// do not edit below this line
// ===========================
bV  = parseInt(navigator.appVersion)
bNS = navigator.appName=="Netscape"
bIE = navigator.appName=="Microsoft Internet Explorer"
function nrc(e)
{
if (bNS && e.which > 1)
	{
	alert(am)
	return false
	}
else if (bIE && (event.button >1))
	{
	alert(am)
	return false;
	}
}
document.onmousedown = nrc;
if (document.layers) window.captureEvents(Event.MOUSEDOWN);
if (bNS && bV<5) window.onmousedown = nrc;


//4.
function ms(m,o) { m.stop(); top.frames['musicFrame'].playMusic=0; o.src='/images/play.gif'; }
function mp(m,o) { m.play(); top.frames['musicFrame'].playMusic=1; o.src='/images/stop.gif'; }
function toggleMusic(o)
{
if(top.frames['musicFrame'])
	{
	m=top.frames['musicFrame'].document;	
	if(top.frames['musicFrame'].playMusic==1)
		{ if(m.getElementById('objectBgsound')) ms(m.getElementById('objectBgsound'),o); if(m.getElementById('objectEmbed')) ms(m.getElementById('objectEmbed'),o); }
	else{ if(m.getElementById('objectBgsound')) mp(m.getElementById('objectBgsound'),o); if(m.getElementById('objectEmbed')) mp(m.getElementById('objectEmbed'),o); }
	}
}