// Toon details van specifieke band
function bandDetail(locatie) 
{
	window.open(locatie,"_blank","toolbar=no,location=no,directories=no,status=yes,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=500");
}

// Wijzig stijl van buttons (IE4+ only)
function MoveOver(button) 
{
	button.style.color='#8484FF';button.style.background='white';button.style.cursor='hand';
}
function MoveOut(button) 
{
	button.style.color='white';button.style.background='#8484FF';
}

// Open een nieuw venster
function newWindow(locatie) 
{
	window.open(locatie,"_blank","toolbar=no,location=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=yes,copyhistory=no,width=600,height=450");
}

// Default status tekst
function defaultStatus() 
{
	status = "EPOC Entertainment: Tel: 024-360 27 62, e-mail: info@epoc.nl";
}

// Capture onmousedown event (IE4+ only), afvangen rechtermuisknop
function MouseDown()
{
	if(event.button != 1 && event.srcElement.tagName == "A") 
	{
		alert("Klik op de linker muisknop voor meer informatie.");
	}
}
