function openGoogleMap(context, x, y, name, line1, line2, line3, url)
{
		var args = "?x=" + x + "&y=" + y + "&name=" + encodeURIComponent(name) + "&line1=" + encodeURIComponent(line1) + "&line2=" + encodeURIComponent(line2) + "&line3=" + encodeURIComponent(line3) + "&url=" +  encodeURIComponent(url);
		var url = context + "/maps/map.html" + args;
	   	window.open(url, "Plan", "width=600,height=600,left=0,top=0,resizable=yes");
}

function openNotFound(context)
{
		var args = "?addressNotFound=true";
		var url = context + "/maps/map.html" + args;
	   	window.open(url, "Plan", "width=600,height=600,left=0,top=0");
}
