// ==========================================================================
// Diverse handige functies
// ==========================================================================


// Route openenen in RouteNet
function OpenRoute(PC, Naam, TheVars) 
{
  var wnd
	if (TheVars != "")
		wnd = window.open("http://tools.locatienet.com/location/map.asp?config_id=1081&language=dutch&&country=NL&zoom=2&markertext=" + Naam + "&" + TheVars, null, "height=400,width=600")
	else
		wnd = window.open("http://tools.locatienet.com/location/map.asp?config_id=1081&language=dutch&zipcode=" + PC + "&country=NL&zoom=2&markertext=" + Naam, null, "height=400,width=600")
	if (wnd) wnd.focus()
}