var 
	siteWidth = 741,
	firstDay  = wdMonday;
//=================================================================================================
function showFlip(item)
{
	var
		win = window.open("flipbook.asp?item=" + item, "frmFlipbook", "menubar=0,location=0,toolbar=0,scrollbars=0,resizable=0,status=1,width=950,height=650");
	
	if ( win )
		win.focus();
}
//=================================================================================================
function showTr( ID, steID, catID )
{
	for ( var i = 0; i < 5; i++ )
	{
		tr = document.getElementById("tr" + i );
		a  = document.getElementById("a" + i );
		
		if ( tr.id != ID )
		{
			tr.style.display = "none";
			
			if ( a.className.endsWith("Loc") )
				a.className = a.className.substr( 0, 5 );
		}
		else if ( ! a.className.endsWith("Loc") )
			a.className += "Loc";
	}
	
	var
		a  = document.getElementById("aReadMore"), 
		tr = document.getElementById( ID );
	
	tr.style.display = "";
	a.href           = "autoparse.asp?steID=" + steID + "&ID=" + catID
}
//=================================================================================================
function showRoute()
{
	var
		edtAdres      = document.getElementById("edtAdres"), 
		edtWoonplaats = document.getElementById("edtWoonplaats"), 
		edtPostcode   = document.getElementById("edtPostcode"), 
		win           = window.open("http://tools.locatienet.com/");
	
	if ( win )
		win.focus();
}
//=================================================================================================
function gotoAfdeling( sender)
{
	if( sender.value.length > 0)
		location.href = 'autoparse.asp?ID=' + sender.value;
}
//-------------------------------------------------------------------------------------------------
function gotoSpecialisme( sender)
{
	if( sender.value.length > 0)
		location.href = 'autoparse.asp?ID=' + sender.value;
}
//=================================================================================================
