﻿/// <reference path="intellisense/virtual-earth.js" />

window.onload = function() {
	var map = new VEMap('veMap');
	map.SetDashboardSize(VEDashboardSize.Tiny);
	map.LoadMap();
	map.Resize(496, 396);
	map.Find(
		"Park Ridge Community Church",
		"3805 Maltby Rd, Bothell, WA 98012",
		VEFindType.Businesses,
		null, null, null, true, true, true, true, null
	);
}