if(!document.getElementById)
{
	if(document.all)
	{
		accessObj = function()
		{
			if(typeof document.all[arguments[0]]!="undefined")
				return document.all[arguments[0]];
			else
				return null;
		}
	}
	else if(document.layers)
	{
		accessObj = function()
		{
			if(typeof document[arguments[0]]!="undefined")
				return document[arguments[0]];
			else
				return null;
		}
	}
}
else
{
	accessObj = function()
	{
		return document.getElementById(arguments[0]);
	}
}

function swap(idname1, imagesrc1, imagename)
{
	document.getElementById(idname1).src = imagesrc1;
	document.getElementById(idname1).alt = imagename;
}


function splash_close()
{
	var site = accessObj("splash");
	site.style.display = "none";
}