function menuOver2(obj)
{
	obj.style.cursor='default';
}

function menuOut2(obj)
{
}

function gaNaar(adress)
{
	document.location.href = adress;
}

function AfdrukWeergave(objName, titel)
{
	window.open('afdrukWeergave.php?objName='+objName+'&titel='+titel,'_blank','width:500px;height:400px;');
}

function getDivHtml(objName)
{
	var obj = document.getElementById(objName);
	
	if ( obj != null )
	{
		return obj.innerHTML;
	}
	else
	{
		return "The page could not be found.";
	}
}

var currentTab = 'website';

function tabOver(obj)
{
	if (obj.className != 'tabOver')
	{
		obj.className='tabOn';
	}
}

function tabOut(obj)
{
	if (obj.className != 'tabOver')
	{
		obj.className='tabOff';
	}
}

function changeStyle(obj,id)
{
	if (obj.className == 'tabOff' || obj.className == 'tabOn' )
	{
		// change tab
		obj.className = 'tabOver';
		document.getElementById(currentTab).className = 'tabOff';

		// change content span
		document.getElementById(id+'Content').style.display = '';
		document.getElementById(currentTab+'Content').style.display = 'none';

		// change currenttab to new tab
		currentTab = id;
	}
}

function setCurrentTab(tabId)
{
	currentTab = tabId;
}
