currentcopy='';
function switchPage(from,to)
{
	hide(from);
	show(to);
	currentcopy=to;
}
function show(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='';
}
function hide(movlay)
{
	myObj = document.getElementById(movlay);
	myObj.style.display='none';
}
function changeImage(theimage,theobject)
{
	document.images[theobject + "image"].src = '../images/' + seasonfolder + '/' + theimage + '.gif';
}
function popup(thepage,width,height)
{
	window.open(thepage,"btw", 'menubar,scrollbars,resizable,dependent,status,width=' + width + ',height=' + height);
}