//open large map in new window
function OpenMap(map,width,height)
{
	var attributes;
	attributes = "width="+width+",height="+height+",toolbar=no,menubar=no,location=no";
	window.open(map,'Map',attributes);
}